Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(348)

Side by Side Diff: fusl/arch/aarch64/bits/mman.h

Issue 1689833004: [fusl] Update fusl (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: remove stray space Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « fusl/arch/aarch64/bits/io.h ('k') | fusl/arch/aarch64/bits/poll.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #define MAP_FAILED ((void *) -1) 1 #define MAP_FAILED ((void *) -1)
2 2
3 #define PROT_NONE 0 3 #define PROT_NONE 0
4 #define PROT_READ 1 4 #define PROT_READ 1
5 #define PROT_WRITE 2 5 #define PROT_WRITE 2
6 #define PROT_EXEC 4 6 #define PROT_EXEC 4
7 #define PROT_GROWSDOWN 0x01000000 7 #define PROT_GROWSDOWN 0x01000000
8 #define PROT_GROWSUP 0x02000000 8 #define PROT_GROWSUP 0x02000000
9 9
10 #define MAP_SHARED 0x01 10 #define MAP_SHARED 0x01
(...skipping 18 matching lines...) Expand all
29 #define POSIX_MADV_SEQUENTIAL 2 29 #define POSIX_MADV_SEQUENTIAL 2
30 #define POSIX_MADV_WILLNEED 3 30 #define POSIX_MADV_WILLNEED 3
31 #define POSIX_MADV_DONTNEED 0 31 #define POSIX_MADV_DONTNEED 0
32 32
33 #define MS_ASYNC 1 33 #define MS_ASYNC 1
34 #define MS_INVALIDATE 2 34 #define MS_INVALIDATE 2
35 #define MS_SYNC 4 35 #define MS_SYNC 4
36 36
37 #define MCL_CURRENT 1 37 #define MCL_CURRENT 1
38 #define MCL_FUTURE 2 38 #define MCL_FUTURE 2
39 #define MCL_ONFAULT 4
39 40
40 #if defined(_GNU_SOURCE) || defined(_BSD_SOURCE) 41 #if defined(_GNU_SOURCE) || defined(_BSD_SOURCE)
41 #define MADV_NORMAL 0 42 #define MADV_NORMAL 0
42 #define MADV_RANDOM 1 43 #define MADV_RANDOM 1
43 #define MADV_SEQUENTIAL 2 44 #define MADV_SEQUENTIAL 2
44 #define MADV_WILLNEED 3 45 #define MADV_WILLNEED 3
45 #define MADV_DONTNEED 4 46 #define MADV_DONTNEED 4
46 #define MADV_REMOVE 9 47 #define MADV_REMOVE 9
47 #define MADV_DONTFORK 10 48 #define MADV_DONTFORK 10
48 #define MADV_DOFORK 11 49 #define MADV_DOFORK 11
49 #define MADV_MERGEABLE 12 50 #define MADV_MERGEABLE 12
50 #define MADV_UNMERGEABLE 13 51 #define MADV_UNMERGEABLE 13
51 #define MADV_HUGEPAGE 14 52 #define MADV_HUGEPAGE 14
52 #define MADV_NOHUGEPAGE 15 53 #define MADV_NOHUGEPAGE 15
53 #define MADV_DONTDUMP 16 54 #define MADV_DONTDUMP 16
54 #define MADV_DODUMP 17 55 #define MADV_DODUMP 17
55 #define MADV_HWPOISON 100 56 #define MADV_HWPOISON 100
56 #define MADV_SOFT_OFFLINE 101 57 #define MADV_SOFT_OFFLINE 101
57 #endif 58 #endif
OLDNEW
« no previous file with comments | « fusl/arch/aarch64/bits/io.h ('k') | fusl/arch/aarch64/bits/poll.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698