summaryrefslogtreecommitdiffstats
path: root/cpukit/rtems/src/semcreate.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/semcreate.c
parentRemove stray white spaces. (diff)
downloadrtems-50f32b11653429546d7b8ff2693b5232b885e201.tar.bz2
Remove stray white spaces.
Diffstat (limited to 'cpukit/rtems/src/semcreate.c')
-rw-r--r--cpukit/rtems/src/semcreate.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/cpukit/rtems/src/semcreate.c b/cpukit/rtems/src/semcreate.c
index eadbf2ebe6..76967768ae 100644
--- a/cpukit/rtems/src/semcreate.c
+++ b/cpukit/rtems/src/semcreate.c
@@ -56,7 +56,7 @@
* name - user defined semaphore name
* count - initial count of semaphore
* attribute_set - semaphore attributes
- * priority_ceiling - semaphore's ceiling priority
+ * priority_ceiling - semaphore's ceiling priority
* id - pointer to semaphore id
*
* Output parameters:
@@ -90,15 +90,15 @@ rtems_status_code rtems_semaphore_create(
if ( _Attributes_Is_inherit_priority( attribute_set ) )
return RTEMS_NOT_DEFINED;
- } else
+ } else
#endif
- if ( _Attributes_Is_inherit_priority( attribute_set ) ||
+ if ( _Attributes_Is_inherit_priority( attribute_set ) ||
_Attributes_Is_priority_ceiling( attribute_set ) ) {
if ( ! ( (_Attributes_Is_binary_semaphore( attribute_set ) ||
_Attributes_Is_simple_binary_semaphore( attribute_set )) &&
-
+
_Attributes_Is_priority( attribute_set ) ) )
return RTEMS_NOT_DEFINED;
@@ -129,7 +129,7 @@ rtems_status_code rtems_semaphore_create(
the_semaphore->attribute_set = attribute_set;
/*
- * If it is not a counting semaphore, then it is either a
+ * If it is not a counting semaphore, then it is either a
* simple binary semaphore or a more powerful mutex style binary
* semaphore.
*/