20 lines
272 B
C
20 lines
272 B
C
/* @(#)munlockall.c 1.1 94/10/31 SMI */
|
|
|
|
/*
|
|
* Copyright (c) 1988 by Sun Microsystems, Inc.
|
|
*/
|
|
|
|
#include <sys/types.h>
|
|
#include <sys/mman.h>
|
|
|
|
/*
|
|
* Function to unlock address space from memory.
|
|
*/
|
|
|
|
/*LINTLIBRARY*/
|
|
munlockall()
|
|
{
|
|
|
|
return (mctl(0, 0, MC_UNLOCKAS, 0));
|
|
}
|