summaryrefslogtreecommitdiffstats
path: root/testsuites/sptests/sp29
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2009-07-09 21:29:47 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2009-07-09 21:29:47 +0000
commit7f8dd5758e5273f7442ce52645d70ff5842a5bfb (patch)
tree681675fd4535badb5d135381392c1d382bda9ffc /testsuites/sptests/sp29
parent2009-07-09 Joel Sherrill <joel.sherrill@OARcorp.com> (diff)
downloadrtems-7f8dd5758e5273f7442ce52645d70ff5842a5bfb.tar.bz2
2009-07-09 Joel Sherrill <joel.sherrill@OARcorp.com>
* sp29/init.c: Simple binary semaphores can not be inherit priority.
Diffstat (limited to 'testsuites/sptests/sp29')
-rw-r--r--testsuites/sptests/sp29/init.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuites/sptests/sp29/init.c b/testsuites/sptests/sp29/init.c
index 9db3d0e2d9..c608539522 100644
--- a/testsuites/sptests/sp29/init.c
+++ b/testsuites/sptests/sp29/init.c
@@ -97,7 +97,7 @@ rtems_task Init (rtems_task_argument ignored)
}
sc = rtems_semaphore_create (rtems_build_name ('S', 'M', 'n', 'c'),
1,
- RTEMS_PRIORITY|RTEMS_SIMPLE_BINARY_SEMAPHORE|RTEMS_INHERIT_PRIORITY |RTEMS_NO_PRIORITY_CEILING|RTEMS_LOCAL,
+ RTEMS_PRIORITY|RTEMS_SIMPLE_BINARY_SEMAPHORE|RTEMS_NO_INHERIT_PRIORITY |RTEMS_NO_PRIORITY_CEILING|RTEMS_LOCAL,
0,
&semnorec);
if (sc != RTEMS_SUCCESSFUL) {