summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtests/psxhdrs/semaphore/sem_open.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_open.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_open.c46
1 files changed, 46 insertions, 0 deletions
diff --git a/testsuites/psxtests/psxhdrs/semaphore/sem_open.c b/testsuites/psxtests/psxhdrs/semaphore/sem_open.c
new file mode 100644
index 0000000000..d3b63d583b
--- /dev/null
+++ b/testsuites/psxtests/psxhdrs/semaphore/sem_open.c
@@ -0,0 +1,46 @@
+/**
+ * @file
+ * @brief sem_open() 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 <fcntl.h>
+ #include <sys/stat.h>
+ #include <semaphore.h>
+
+ int test( void );
+
+ int result = 1;
+
+ int test( void )
+ {
+ sem_t *sem1;
+ int oflag = O_CREAT;
+ unsigned int value;
+
+ value = 1;
+
+ sem1 = sem_open( "sem", oflag, 0777, value );
+ (void) sem1;
+
+ return result;
+ }