summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2003-11-21 14:23:37 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2003-11-21 14:23:37 +0000
commit106942b95c8d342af69952e636fcfe815acf5ac5 (patch)
tree181f1d0121611cdb1e086c7f75107cec0cc6c538 /doc
parent2003-10-22 Thomas Doerfler <Thomas.Doerfler@imd-systems.de> (diff)
downloadrtems-106942b95c8d342af69952e636fcfe815acf5ac5.tar.bz2
2003-11-21 Joel Sherrill <joel@OARcorp.com>
PR 521/doc * sem.t: Default attributes were wrong for semaphores.
Diffstat (limited to 'doc')
-rw-r--r--doc/user/ChangeLog5
-rw-r--r--doc/user/sem.t6
2 files changed, 9 insertions, 2 deletions
diff --git a/doc/user/ChangeLog b/doc/user/ChangeLog
index 4626439784..734ed36934 100644
--- a/doc/user/ChangeLog
+++ b/doc/user/ChangeLog
@@ -1,3 +1,8 @@
+2003-11-21 Joel Sherrill <joel@OARcorp.com>
+
+ PR 521/doc
+ * sem.t: Default attributes were wrong for semaphores.
+
2003-08-30 Ralf Corsepius <corsepius@faw.uni-ulm.de>
* c_user.texi: include common/rtems.texi.
diff --git a/doc/user/sem.t b/doc/user/sem.t
index 755b693c0b..1f9b7553b9 100644
--- a/doc/user/sem.t
+++ b/doc/user/sem.t
@@ -188,9 +188,10 @@ the set of valid semaphore attributes:
@item @code{@value{RPREFIX}PRIORITY} - tasks wait by priority
@item @code{@value{RPREFIX}BINARY_SEMAPHORE} - restrict values to
-0 and 1 (default)
+0 and 1
@item @code{@value{RPREFIX}COUNTING_SEMAPHORE} - no restriction on values
+(default)
@item @code{@value{RPREFIX}SIMPLE_BINARY_SEMAPHORE} - restrict values to
0 and 1, do not allow nested access, allow deletion of locked semaphore.
@@ -447,9 +448,10 @@ defined by RTEMS:
@item @code{@value{RPREFIX}PRIORITY} - tasks wait by priority
@item @code{@value{RPREFIX}BINARY_SEMAPHORE} - restrict values to
-0 and 1 (default)
+0 and 1
@item @code{@value{RPREFIX}COUNTING_SEMAPHORE} - no restriction on values
+(default)
@item @code{@value{RPREFIX}SIMPLE_BINARY_SEMAPHORE} - restrict values to
0 and 1, block on nested access, allow deletion of locked semaphore.