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

Side by Side Diff: sandbox/linux/services/android_futex.h

Issue 317373003: Merge 274934 "Linux sandbox: restrict futex operations." (Closed) Base URL: svn://svn.chromium.org/chrome/branches/1985/src/
Patch Set: Created 6 years, 6 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 | Annotate | Revision Log
« no previous file with comments | « sandbox/linux/seccomp-bpf-helpers/syscall_sets.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef SANDBOX_LINUX_SERVICES_ANDROID_FUTEX_H_ 5 #ifndef SANDBOX_LINUX_SERVICES_ANDROID_FUTEX_H_
6 #define SANDBOX_LINUX_SERVICES_ANDROID_FUTEX_H_ 6 #define SANDBOX_LINUX_SERVICES_ANDROID_FUTEX_H_
7 7
8 #if !defined(FUTEX_PRIVATE_FLAG) 8 #if !defined(FUTEX_PRIVATE_FLAG)
9 #define FUTEX_PRIVATE_FLAG 128 9 #define FUTEX_PRIVATE_FLAG 128
10 #endif 10 #endif
11 11
12 #if !defined(FUTEX_CLOCK_REALTIME) 12 #if !defined(FUTEX_CLOCK_REALTIME)
13 #define FUTEX_CLOCK_REALTIME 256 13 #define FUTEX_CLOCK_REALTIME 256
14 #endif 14 #endif
15 15
16 #if !defined(FUTEX_CMP_REQUEUE_PI) 16 #if !defined(FUTEX_CMP_REQUEUE_PI)
17 #define FUTEX_CMP_REQUEUE_PI 12 17 #define FUTEX_CMP_REQUEUE_PI 12
18 #endif 18 #endif
19 19
20 #if !defined(FUTEX_CMP_REQUEUE_PI_PRIVATE) 20 #if !defined(FUTEX_CMP_REQUEUE_PI_PRIVATE)
21 #define FUTEX_CMP_REQUEUE_PI_PRIVATE (FUTEX_CMP_REQUEUE_PI | FUTEX_PRIVATE_FLAG) 21 #define FUTEX_CMP_REQUEUE_PI_PRIVATE (FUTEX_CMP_REQUEUE_PI | FUTEX_PRIVATE_FLAG)
22 #endif 22 #endif
23 23
24 #if !defined(FUTEX_CMD_MASK) 24 #if !defined(FUTEX_CMD_MASK)
25 #define FUTEX_CMD_MASK ~(FUTEX_PRIVATE_FLAG | FUTEX_CLOCK_REALTIME) 25 #define FUTEX_CMD_MASK ~(FUTEX_PRIVATE_FLAG | FUTEX_CLOCK_REALTIME)
26 #endif 26 #endif
27 27
28 #endif // SANDBOX_LINUX_SERVICES_ANDROID_FUTEX_H_ 28 #endif // SANDBOX_LINUX_SERVICES_ANDROID_FUTEX_H_
OLDNEW
« no previous file with comments | « sandbox/linux/seccomp-bpf-helpers/syscall_sets.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698