summaryrefslogtreecommitdiffstats
path: root/c/src/exec/posix/include/rtems/posix
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2000-08-15 13:19:57 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2000-08-15 13:19:57 +0000
commit939e29dc4d68ed7bd8c89b70d262bb72c0ff66c3 (patch)
tree340464e30b63b201f4f1ddfad83ae55f59e3b3ef /c/src/exec/posix/include/rtems/posix
parent2000-08-15 Joel Sherrill <joel@OARcorp.com> (diff)
downloadrtems-939e29dc4d68ed7bd8c89b70d262bb72c0ff66c3.tar.bz2
2000-08-15 Joel Sherrill <joel@OARcorp.com>
* src/ptimer1.c: Removed unused routine PRINT_ERRNO_S. * src/ptimer1.c: Removed unnecessary routine COPY_ITIMERSPEC_S and used structure copy instead. * src/ptimer1.c: Renamed timer_alive_t to POSIX_Timer_Control. * include/rtems/posix/timer.h: Ditto.
Diffstat (limited to 'c/src/exec/posix/include/rtems/posix')
-rw-r--r--c/src/exec/posix/include/rtems/posix/timer.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/c/src/exec/posix/include/rtems/posix/timer.h b/c/src/exec/posix/include/rtems/posix/timer.h
index f8cbe48b73..8b11a18e65 100644
--- a/c/src/exec/posix/include/rtems/posix/timer.h
+++ b/c/src/exec/posix/include/rtems/posix/timer.h
@@ -43,14 +43,14 @@ typedef struct {
unsigned32 ticks; /* Number of ticks of the initialization */
unsigned32 overrun; /* Number of expirations of the timer */
rtems_time_of_day time; /* Time in which the timer was started */
-} timer_alive_t;
+} POSIX_Timer_Control;
/*
* Array of Timers
*/
extern int timer_max;
-extern timer_alive_t *timer_struct;
+extern POSIX_Timer_Control *timer_struct;
#endif
/* end of include file */