summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/src/munlockall.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/posix/src/munlockall.c')
-rw-r--r--cpukit/posix/src/munlockall.c24
1 files changed, 24 insertions, 0 deletions
diff --git a/cpukit/posix/src/munlockall.c b/cpukit/posix/src/munlockall.c
new file mode 100644
index 0000000000..c24cfc9cd3
--- /dev/null
+++ b/cpukit/posix/src/munlockall.c
@@ -0,0 +1,24 @@
+/**
+ * @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 munlockall( void )
+{
+ rtems_set_errno_and_return_minus_one( EINVAL );
+}