summaryrefslogtreecommitdiffstats
path: root/c/src/tests/support/stubdr/stubdrv.h
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1995-08-17 19:51:51 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1995-08-17 19:51:51 +0000
commitb06e68ef1f6df69cc86d72356c3a002054a35fad (patch)
tree722b2da3cc83f1cf03019cab8cf895a509eb6801 /c/src/tests/support/stubdr/stubdrv.h
parentvariable length messages (diff)
downloadrtems-b06e68ef1f6df69cc86d72356c3a002054a35fad.tar.bz2
Numerous miscellaneous features incorporated from Tony Bennett
(tbennett@divnc.com) including the following major additions: + variable length messages + named devices + debug monitor + association tables/variables
Diffstat (limited to 'c/src/tests/support/stubdr/stubdrv.h')
-rw-r--r--c/src/tests/support/stubdr/stubdrv.h24
1 files changed, 6 insertions, 18 deletions
diff --git a/c/src/tests/support/stubdr/stubdrv.h b/c/src/tests/support/stubdr/stubdrv.h
index 34c571b6d6..2ca201c3a8 100644
--- a/c/src/tests/support/stubdr/stubdrv.h
+++ b/c/src/tests/support/stubdr/stubdrv.h
@@ -28,49 +28,37 @@ extern "C" {
rtems_device_driver Stub_initialize(
rtems_device_major_number,
rtems_device_minor_number,
- void *,
- rtems_id,
- rtems_unsigned32 *
+ void *
);
rtems_device_driver Stub_open(
rtems_device_major_number,
rtems_device_minor_number,
- void *,
- rtems_id,
- rtems_unsigned32 *
+ void *
);
rtems_device_driver Stub_close(
rtems_device_major_number,
rtems_device_minor_number,
- void *,
- rtems_id,
- rtems_unsigned32 *
+ void *
);
rtems_device_driver Stub_read(
rtems_device_major_number,
rtems_device_minor_number,
- void *,
- rtems_id,
- rtems_unsigned32 *
+ void *
);
rtems_device_driver Stub_write(
rtems_device_major_number,
rtems_device_minor_number,
- void *,
- rtems_id,
- rtems_unsigned32 *
+ void *
);
rtems_device_driver Stub_control(
rtems_device_major_number,
rtems_device_minor_number,
- void *,
- rtems_id,
- rtems_unsigned32 *
+ void *
);
#ifdef __cplusplus