summaryrefslogtreecommitdiffstats
path: root/cpukit/rtems/src/eventtimeout.c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2004-04-18 06:05:35 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2004-04-18 06:05:35 +0000
commit50f32b11653429546d7b8ff2693b5232b885e201 (patch)
treea8821a7e3025ef47082cc21ccbb56551382cdc3f /cpukit/rtems/src/eventtimeout.c
parentRemove stray white spaces. (diff)
downloadrtems-50f32b11653429546d7b8ff2693b5232b885e201.tar.bz2
Remove stray white spaces.
Diffstat (limited to 'cpukit/rtems/src/eventtimeout.c')
-rw-r--r--cpukit/rtems/src/eventtimeout.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/cpukit/rtems/src/eventtimeout.c b/cpukit/rtems/src/eventtimeout.c
index 03b6430fb4..292324d4b9 100644
--- a/cpukit/rtems/src/eventtimeout.c
+++ b/cpukit/rtems/src/eventtimeout.c
@@ -49,12 +49,12 @@ void _Event_Timeout(
case OBJECTS_ERROR:
break;
case OBJECTS_LOCAL:
-
+
/*
* If the event manager is not synchronized, then it is either
* "nothing happened", "timeout", or "satisfied". If the_thread
* is the executing thread, then it is in the process of blocking
- * and it is the thread which is responsible for the synchronization
+ * and it is the thread which is responsible for the synchronization
* process.
*
* If it is not satisfied, then it is "nothing happened" and
@@ -65,7 +65,7 @@ void _Event_Timeout(
_ISR_Disable( level );
if ( the_thread->Wait.count ) { /* verify thread is waiting */
the_thread->Wait.count = 0;
- if ( _Event_Sync_state != EVENT_SYNC_SYNCHRONIZED &&
+ if ( _Event_Sync_state != EVENT_SYNC_SYNCHRONIZED &&
_Thread_Is_executing( the_thread ) ) {
if ( _Event_Sync_state != EVENT_SYNC_SATISFIED ) {
_Event_Sync_state = EVENT_SYNC_TIMEOUT;
@@ -79,7 +79,7 @@ void _Event_Timeout(
}
else {
_ISR_Enable( level );
- }
+ }
_Thread_Unnest_dispatch();
break;