Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Update.
2002-07-17  Ulrich Drepper  <drepper@redhat.com>

	* sysdeps/unix/sysv/linux/ia64/bits/mman.h: Fix MS_SYNC and
	MS_INVALIDATE values.
  • Loading branch information
Ulrich Drepper committed Jul 17, 2002
1 parent cd682e1 commit 9df6376
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions ChangeLog
@@ -1,3 +1,8 @@
2002-07-17 Ulrich Drepper <drepper@redhat.com>

* sysdeps/unix/sysv/linux/ia64/bits/mman.h: Fix MS_SYNC and
MS_INVALIDATE values.

2002-07-17 Andreas Schwab <schwab@suse.de>
Ulrich Drepper <drepper@redhat.com>

Expand Down
4 changes: 2 additions & 2 deletions sysdeps/unix/sysv/linux/ia64/bits/mman.h
Expand Up @@ -62,8 +62,8 @@

/* Flags to `msync'. */
#define MS_ASYNC 0x1 /* Sync memory asynchronously. */
#define MS_SYNC 0x2 /* Synchronous memory sync. */
#define MS_INVALIDATE 0x4 /* Invalidate the caches. */
#define MS_INVALIDATE 0x2 /* Invalidate the caches. */
#define MS_SYNC 0x4 /* Synchronous memory sync. */

/* Flags for `mlockall'. */
#define MCL_CURRENT 0x1 /* Lock all currently mapped pages. */
Expand Down

0 comments on commit 9df6376

Please sign in to comment.