summaryrefslogtreecommitdiffstats
path: root/cpukit/rtems
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2008-01-07 15:31:18 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2008-01-07 15:31:18 +0000
commita87bbe9bb723b435492be46b889c9093edef8929 (patch)
tree859a2431e44aadff06f5264464927fc165f769eb /cpukit/rtems
parent2008-01-07 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-a87bbe9bb723b435492be46b889c9093edef8929.tar.bz2
2008-01-07 Joel Sherrill <joel.sherrill@oarcorp.com>
* rtems/src/eventseize.c, rtems/src/eventtimeout.c: Minor style clean up.
Diffstat (limited to 'cpukit/rtems')
-rw-r--r--cpukit/rtems/src/eventseize.c4
-rw-r--r--cpukit/rtems/src/eventtimeout.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/cpukit/rtems/src/eventseize.c b/cpukit/rtems/src/eventseize.c
index 2c8a1479d8..1d96811564 100644
--- a/cpukit/rtems/src/eventseize.c
+++ b/cpukit/rtems/src/eventseize.c
@@ -88,8 +88,8 @@ void _Event_Seize(
_Event_Sync_state = EVENT_SYNC_NOTHING_HAPPENED;
- executing->Wait.option = (uint32_t ) option_set;
- executing->Wait.count = (uint32_t ) event_in;
+ executing->Wait.option = (uint32_t) option_set;
+ executing->Wait.count = (uint32_t) event_in;
executing->Wait.return_argument = event_out;
_ISR_Enable( level );
diff --git a/cpukit/rtems/src/eventtimeout.c b/cpukit/rtems/src/eventtimeout.c
index 85e0a61096..b01d8199ad 100644
--- a/cpukit/rtems/src/eventtimeout.c
+++ b/cpukit/rtems/src/eventtimeout.c
@@ -71,7 +71,7 @@ void _Event_Timeout(
_Thread_Is_executing( the_thread ) ) {
if ( _Event_Sync_state != EVENT_SYNC_SATISFIED ) {
_Event_Sync_state = EVENT_SYNC_TIMEOUT;
- }
+ }
_ISR_Enable( level );
} else {
the_thread->Wait.return_code = RTEMS_TIMEOUT;