summaryrefslogtreecommitdiffstats
path: root/cpukit/rtems/src/event.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1995-12-01 22:03:55 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1995-12-01 22:03:55 +0000
commit8d0b7d96439c8dcce6e3c1ab7ca732402f92a2c4 (patch)
tree7d9b73603be147f329e071327af47d9c26ac5d19 /cpukit/rtems/src/event.c
parentAdded new synchronization algorithm. (diff)
downloadrtems-8d0b7d96439c8dcce6e3c1ab7ca732402f92a2c4.tar.bz2
Insert mode argument to _Watchdog_Insert removed. Now are watchdog timers
are automatically activated upon insertion.
Diffstat (limited to 'cpukit/rtems/src/event.c')
-rw-r--r--cpukit/rtems/src/event.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/cpukit/rtems/src/event.c b/cpukit/rtems/src/event.c
index d388de0b81..9bea949647 100644
--- a/cpukit/rtems/src/event.c
+++ b/cpukit/rtems/src/event.c
@@ -186,11 +186,7 @@ void _Event_Seize(
executing->Object.id,
NULL
);
- _Watchdog_Insert_ticks(
- &executing->Timer,
- ticks,
- WATCHDOG_ACTIVATE_NOW
- );
+ _Watchdog_Insert_ticks( &executing->Timer, ticks );
}
_Thread_Set_state( executing, STATES_WAITING_FOR_EVENT );