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

Unified Diff: sysdeps/unix/make-syscalls.sh

Issue 9969049: added several system call hooks for future sockets implementation (Closed) Base URL: http://git.chromium.org/native_client/nacl-glibc.git@master
Patch Set: fixed interceptors w/ @khim's advice Created 8 years, 8 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
« make_sysd_rules.py ('K') | « sysdeps/nacl/sysdep.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sysdeps/unix/make-syscalls.sh
diff --git a/sysdeps/unix/make-syscalls.sh b/sysdeps/unix/make-syscalls.sh
index 674d9533fb460ddc883f2e0fa01f849695bc70cf..f6bfdeca3fbb7fd3a891379a9c788cf87062457f 100644
--- a/sysdeps/unix/make-syscalls.sh
+++ b/sysdeps/unix/make-syscalls.sh
@@ -1,8 +1,6 @@
#! /bin/sh
-
# Usage: make-syscalls.sh ../sysdeps/unix/common
# Expects $sysdirs in environment.
-
##############################################################################
# Syscall Signature Key Letters for BP Thunks:
@@ -210,7 +208,7 @@ shared-only-routines += $file
for arg; do
echo -n "$sprtr"
case $arg in
- [abIpP]*) echo -n "void *$arg";;
+ [abIpPBN]*) echo -n "void *$arg";;
f*) echo -n "int $arg[2]";;
i*) echo -n "int $arg";;
n*) echo -n "size_t $arg";;
« make_sysd_rules.py ('K') | « sysdeps/nacl/sysdep.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698