2008-09-05 Joel Sherrill <joel.sherrill@OARcorp.com>

* libcsupport/include/clockdrv.h: The Shared Memory Driver no longer
	requires the special IOCTL in Clock_control. This was a hack which
	has existed since before the Classic API Timer Manager was
	implemented. All implementations of and references to Clock_control
	were removed.
This commit is contained in:
Joel Sherrill
2008-09-05 22:06:31 +00:00
parent 2d5e1ca04e
commit 16bd644c3d
2 changed files with 9 additions and 7 deletions

View File

@@ -1,3 +1,11 @@
2008-09-05 Joel Sherrill <joel.sherrill@OARcorp.com>
* libcsupport/include/clockdrv.h: The Shared Memory Driver no longer
requires the special IOCTL in Clock_control. This was a hack which
has existed since before the Classic API Timer Manager was
implemented. All implementations of and references to Clock_control
were removed.
2008-09-05 Joel Sherrill <joel.sherrill@oarcorp.com>
* score/src/corebarrier.c, score/src/corebarrierrelease.c,

View File

@@ -32,7 +32,7 @@ extern rtems_device_minor_number rtems_clock_minor;
/* default clock driver entry */
#define CLOCK_DRIVER_TABLE_ENTRY \
{ Clock_initialize, NULL, NULL, NULL, NULL, Clock_control }
{ Clock_initialize, NULL, NULL, NULL, NULL, NULL }
rtems_device_driver Clock_initialize(
rtems_device_major_number,
@@ -40,12 +40,6 @@ rtems_device_driver Clock_initialize(
void *
);
rtems_device_driver Clock_control(
rtems_device_major_number major,
rtems_device_minor_number minor,
void *pargp
);
void Clock_exit(void);
#ifdef __cplusplus