summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtests/psxhdrs/semaphore/sem_wait.c
diff options
context:
space:
mode:
authorHimanshu40 <himanshuwindows8.1@gmail.com>2018-11-29 22:33:19 +0530
committerJoel Sherrill <joel@rtems.org>2018-11-29 11:21:40 -0600
commit7ea4c0260468c33dcca163626838d517f040b5d5 (patch)
tree35bb54025a94cfa10be36b51eede076cd218ab02 /testsuites/psxtests/psxhdrs/semaphore/sem_wait.c
parentbfin/shared/dev/clock.c: Include rtems/score/thread.h (diff)
downloadrtems-7ea4c0260468c33dcca163626838d517f040b5d5.tar.bz2
psxtests : Add POSIX API Signature Compliance Tests for semaphore.h (GCI 2018)
Diffstat (limited to '')
-rw-r--r--testsuites/psxtests/psxhdrs/semaphore/sem_wait.c44
1 files changed, 44 insertions, 0 deletions
diff --git a/testsuites/psxtests/psxhdrs/semaphore/sem_wait.c b/testsuites/psxtests/psxhdrs/semaphore/sem_wait.c
new file mode 100644
index 0000000000..03d77cfce8
--- /dev/null
+++ b/testsuites/psxtests/psxhdrs/semaphore/sem_wait.c
@@ -0,0 +1,44 @@
+/**
+ * @file
+ * @brief sem_wait() API Conformance Test
+ */
+
+ /*
+ * COPYRIGHT (c) 2018.
+ * Himanshu Sekhar Nayak
+ *
+ * Permission to use, copy, modify, and/or distribute this software
+ * for any purpose with or without fee is hereby granted.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
+ * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
+ * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR
+ * BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES
+ * OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
+ * WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
+ * ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+ */
+
+ #ifdef HAVE_CONFIG_H
+ #include "config.h"
+ #endif
+
+ #include <semaphore.h>
+
+ int test( void );
+
+ int test( void )
+ {
+ sem_t sem;
+ int pshared;
+ unsigned int value;
+ int result;
+
+ pshared = 0;
+ value = 1;
+
+ sem_init( &sem, pshared, value );
+ result = sem_wait( &sem );
+
+ return result;
+ }