summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtests/psxhdrs
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/psxtests/psxhdrs')
-rw-r--r--testsuites/psxtests/psxhdrs/Makefile.am3
-rw-r--r--testsuites/psxtests/psxhdrs/devctl/posix_devctl.c37
2 files changed, 40 insertions, 0 deletions
diff --git a/testsuites/psxtests/psxhdrs/Makefile.am b/testsuites/psxtests/psxhdrs/Makefile.am
index 82fb315b19..e902500b9d 100644
--- a/testsuites/psxtests/psxhdrs/Makefile.am
+++ b/testsuites/psxtests/psxhdrs/Makefile.am
@@ -1,6 +1,9 @@
noinst_LIBRARIES = lib.a
lib_a_SOURCES =
+# methods in <devctl.h>
+lib_a_SOURCES += devctl/posix_devctl.c
+
# methods in <pthread.h>
lib_a_SOURCES += pthread/pthread_attr_destroy.c
lib_a_SOURCES += pthread/pthread_attr_getdetachstate.c
diff --git a/testsuites/psxtests/psxhdrs/devctl/posix_devctl.c b/testsuites/psxtests/psxhdrs/devctl/posix_devctl.c
new file mode 100644
index 0000000000..3a40c7869a
--- /dev/null
+++ b/testsuites/psxtests/psxhdrs/devctl/posix_devctl.c
@@ -0,0 +1,37 @@
+/*
+ * COPYRIGHT (c) 2016.
+ * On-Line Applications Research Corporation (OAR).
+ *
+ * The license and distribution terms for this file may be
+ * found in the file LICENSE in this distribution or at
+ * http://www.rtems.org/license/LICENSE.
+ */
+
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
+#define _POSIX_26_C_SOURCE
+
+#include <devctl.h>
+
+int test( void );
+
+int test( void )
+{
+ int result;
+ int fd;
+ int dcmd;
+ void *dev_data_ptr;
+ size_t nbyte;
+ int dev_info;
+
+ fd = -1;
+ dcmd = 0;
+ dev_data_ptr = NULL;
+ nbyte = 0;
+
+ result = posix_devctl(fd, dcmd, dev_data_ptr, nbyte, &dev_info);
+
+ return result;
+}