* posix/src/alarm.c, posix/src/psignal.c, posix/src/ualarm.c:
	Moved watchdog control objects to reduce dependencies.
This commit is contained in:
Sebastian Huber
2010-04-30 08:37:27 +00:00
parent e90fc943c4
commit 1da7812f05
4 changed files with 8 additions and 4 deletions
+5
View File
@@ -1,3 +1,8 @@
2010-04-30 Sebastian Huber <sebastian.huber@embedded-brains.de>
* posix/src/alarm.c, posix/src/psignal.c, posix/src/ualarm.c:
Moved watchdog control objects to reduce dependencies.
2010-04-29 Sebastian Huber <sebastian.huber@embedded-brains.de>
PR 1507/filesystem
-2
View File
@@ -22,8 +22,6 @@
#include <rtems/posix/pthread.h>
#include <rtems/posix/psignal.h>
Watchdog_Control _POSIX_signals_Alarm_timer;
/*PAGE
*
* _POSIX_signals_Alarm_TSR
+3
View File
@@ -89,6 +89,9 @@ Thread_queue_Control _POSIX_signals_Wait_queue;
Chain_Control _POSIX_signals_Inactive_siginfo;
Chain_Control _POSIX_signals_Siginfo[ SIG_ARRAY_MAX ];
Watchdog_Control _POSIX_signals_Alarm_timer;
Watchdog_Control _POSIX_signals_Ualarm_timer;
/*PAGE
*
* XXX - move these
-2
View File
@@ -23,8 +23,6 @@
#include <rtems/posix/psignal.h>
#include <rtems/posix/time.h>
Watchdog_Control _POSIX_signals_Ualarm_timer;
/*PAGE
*
* _POSIX_signals_Ualarm_TSR