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

Unified Diff: src/public/linux_syscalls/sys/syscall.h

Issue 1212613002: Non-SFI mode: Add Linux asynchronous signal support (Closed) Base URL: https://chromium.googlesource.com/native_client/src/native_client.git@master
Patch Set: Created 5 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 side-by-side diff with in-line comments
Download patch
Index: src/public/linux_syscalls/sys/syscall.h
diff --git a/src/public/linux_syscalls/sys/syscall.h b/src/public/linux_syscalls/sys/syscall.h
index cd6414929040e1291ea3e3de59c5a1f6fbe57076..965dd0c2ef895dba295befe10c31fa0b971a8e36 100644
--- a/src/public/linux_syscalls/sys/syscall.h
+++ b/src/public/linux_syscalls/sys/syscall.h
@@ -66,11 +66,13 @@ int syscall(int number, ...);
# define __NR_fstat64 197
# define __NR_getdents64 220
# define __NR_fcntl64 221
+# define __NR_gettid 224
# define __NR_futex 240
# define __NR_set_thread_area 243
# define __NR_exit_group 252
# define __NR_clock_gettime 265
# define __NR_clock_getres 266
+# define __NR_tgkill 270
# define __NR_openat 295
# define __NR_fstatat64 300
@@ -120,10 +122,12 @@ int syscall(int number, ...);
# define __NR_fstat64 197
# define __NR_getdents64 217
# define __NR_fcntl64 221
+# define __NR_gettid 224
# define __NR_futex 240
# define __NR_exit_group 248
# define __NR_clock_gettime 263
# define __NR_clock_getres 264
+# define __NR_tgkill 286
Junichi Uekawa 2015/07/01 02:14:57 double checking; 268?
Luis Héctor Chávez 2015/07/06 23:45:00 Yes, it should have been 268.
# define __NR_socketpair 288
# define __NR_shutdown 293
# define __NR_sendmsg 296

Powered by Google App Engine
This is Rietveld 408576698