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

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 @pasko suggestions on headers and comments 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
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
-
khim 2012/04/13 11:56:48 Please return these lines back, no need to create
# Usage: make-syscalls.sh ../sysdeps/unix/common
# Expects $sysdirs in environment.
-
khim 2012/04/13 11:56:48 Ditto.
##############################################################################
# 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";;

Powered by Google App Engine
This is Rietveld 408576698