Files
Arquivotheca.Solaris-2.5/lib/libbc/libc/gen/common/munlock.c
seta75D 7c4988eac0 Init
2021-10-11 19:38:01 -03:00

22 lines
305 B
C
Executable File

/* @(#)munlock.c 1.2 90/03/30 SMI */
/*
* Copyright (c) 1988 by Sun Microsystems, Inc.
*/
#include <sys/types.h>
#include <sys/mman.h>
/*
* Function to unlock address range from memory.
*/
/*LINTLIBRARY*/
munlock(addr, len)
caddr_t addr;
u_int len;
{
return (mctl(addr, len, MC_UNLOCK, 0));
}