From ef362818dff3e7dc437d90133424e9c9f0608a02 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Mon, 5 Dec 2016 21:06:40 -0600 Subject: Add support for posix_devctl() --- testsuites/psxtests/psxhdrs/devctl/posix_devctl.c | 37 +++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 testsuites/psxtests/psxhdrs/devctl/posix_devctl.c (limited to 'testsuites/psxtests/psxhdrs/devctl/posix_devctl.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 + +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; +} -- cgit v1.2.3