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