Files
seta75D 2e8a93c394 Init
2021-10-11 18:20:23 -03:00

22 lines
305 B
C

/* @(#)munlock.c 1.1 92/07/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));
}