summaryrefslogblamecommitdiffstats
path: root/cpukit/posix/src/munlockall.c
blob: c24cfc9cd375584357edf2bb335c08dcce17419c (plain) (tree)























                                                          
/**
 * @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 );
}