summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1997-03-17 04:02:24 +0000
committerUlrich Drepper <drepper@redhat.com>1997-03-17 04:02:24 +0000
commitc7b0194ac35198ee48760812ccf03b57c086e50d (patch)
tree2b66df2ded72fd5e12682f315362a7212d90db83
parent885ba001178ca2650dddf4f18f0330bb6b6e0a14 (diff)
(msync): Add third parameter.
-rw-r--r--sysdeps/generic/sys/mman.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/sysdeps/generic/sys/mman.h b/sysdeps/generic/sys/mman.h
index bcda90f4ba..32b152e124 100644
--- a/sysdeps/generic/sys/mman.h
+++ b/sysdeps/generic/sys/mman.h
@@ -1,5 +1,5 @@
/* Definitions for BSD-style memory management. Generic/4.4 BSD version.
- Copyright (C) 1994, 1995, 1996 Free Software Foundation, Inc.
+ Copyright (C) 1994, 1995, 1996, 1997 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@@ -97,8 +97,8 @@ int mprotect __P ((__caddr_t __addr, size_t __len, int __prot));
/* Synchronize the region starting at ADDR and extending LEN bytes with the
file it maps. Filesystem operations on a file being mapped are
- unpredictable before this is done. */
-int msync __P ((__caddr_t __addr, size_t __len));
+ unpredictable before this is done. Flags are from the MS_* set. */
+int msync __P ((__caddr_t __addr, size_t __len, int flags));
/* Advise the system about particular usage patterns the program follows
for the region starting at ADDR and extending LEN bytes. */