Files
Arquivotheca.SunOS-4.1.3/lib/libc/gen/common/msync.c
seta75D 2e8a93c394 Init
2021-10-11 18:20:23 -03:00

23 lines
334 B
C

/* @(#)msync.c 1.1 92/07/30 SMI */
/*
* Copyright (c) 1988 by Sun Microsystems, Inc.
*/
#include <sys/types.h>
#include <sys/mman.h>
/*
* Function to synchronize address range with backing store.
*/
/*LINTLIBRARY*/
msync(addr, len, flags)
caddr_t addr;
u_int len;
int flags;
{
return (mctl(addr, len, MC_SYNC, flags));
}