summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/src/shmunlink.c
diff options
context:
space:
mode:
authorGedare Bloom <gedare@rtems.org>2016-08-12 11:17:40 -0400
committerGedare Bloom <gedare@rtems.org>2017-01-13 11:05:56 -0500
commit1ca8ee137e9e7dc815e55cc06ebd2c2c4e2191be (patch)
treea1556767a5daaacb0f88616e5c5344f49745acab /cpukit/posix/src/shmunlink.c
parentposix: move sys/mman.h to newlib and test it in psxhdrs (diff)
downloadrtems-1ca8ee137e9e7dc815e55cc06ebd2c2c4e2191be.tar.bz2
posix: add stub implementations for mman functions
Diffstat (limited to 'cpukit/posix/src/shmunlink.c')
-rw-r--r--cpukit/posix/src/shmunlink.c26
1 files changed, 26 insertions, 0 deletions
diff --git a/cpukit/posix/src/shmunlink.c b/cpukit/posix/src/shmunlink.c
new file mode 100644
index 0000000000..f5599227b1
--- /dev/null
+++ b/cpukit/posix/src/shmunlink.c
@@ -0,0 +1,26 @@
+/**
+ * @file
+ */
+
+/*
+ * Copyright (c) 2016 Gedare Bloom.
+ *
+ * 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.
+ */
+
+#if HAVE_CONFIG_H
+#include "config.h"
+#endif
+
+#include <sys/mman.h>
+#include <errno.h>
+#include <rtems/seterr.h>
+
+int shm_unlink( const char *name )
+{
+ (void) name;
+
+ rtems_set_errno_and_return_minus_one( ENOENT );
+}