This is the mail archive of the libc-hacker@sourceware.cygnus.com mailing list for the glibc project.

Note that libc-hacker is a closed list. You may look at the archives of this list, but subscription and posting are not open.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

PATCH: fix some syscall signatures


2000-06-22  Greg McGary  <greg@mcgary.org>

	* sysdeps/unix/syscalls.list (sys_mknod): Fix signatures.
	* sysdeps/unix/inet/syscalls.list (accept, getpeername, getsockname):
	Fix signatures.

OK?

Index: sysdeps/unix/syscalls.list
===================================================================
RCS file: /cvs/glibc/libc/sysdeps/unix/syscalls.list,v
retrieving revision 1.12
diff -u -p -r1.12 syscalls.list
--- syscalls.list	2000/06/13 07:26:33	1.12
+++ syscalls.list	2000/06/22 22:27:32
@@ -55,7 +55,7 @@ swapon		-	swapon		i:s	swapon
 symlink		-	symlink		i:ss	__symlink	symlink
 sync		-	sync		i:	sync
 sys_fstat	fxstat	fstat		i:ip	__syscall_fstat
-sys_mknod	xmknod	mknod		i:pii	__syscall_mknod
+sys_mknod	xmknod	mknod		i:sii	__syscall_mknod
 sys_stat	xstat	stat		i:sp	__syscall_stat
 umask		-	umask		i:i	__umask		umask
 uname		-	uname		i:p	uname
Index: sysdeps/unix/inet/syscalls.list
===================================================================
RCS file: /cvs/glibc/libc/sysdeps/unix/inet/syscalls.list,v
retrieving revision 1.5
diff -u -p -r1.5 syscalls.list
--- syscalls.list	2000/06/13 07:26:41	1.5
+++ syscalls.list	2000/06/22 22:27:32
@@ -1,12 +1,12 @@
 # File name	Caller	Syscall name	# args	Strong name	Weak names
 
-accept		-	accept		i:ipi	__libc_accept	accept
+accept		-	accept		i:ipp	__libc_accept	accept
 bind		-	bind		i:ipi	bind
 connect		-	connect		i:ipi	__libc_connect	__connect connect
 gethostid	-	gethostid	i:	gethostid
 gethostname	-	gethostname	i:si	__gethostname	gethostname
-getpeername	-	getpeername	i:ipi	getpeername
-getsockname	-	getsockname	i:ipi	getsockname
+getpeername	-	getpeername	i:ipp	getpeername
+getsockname	-	getsockname	i:ipp	getsockname
 getsockopt	-	getsockopt	i:iiipp	getsockopt
 listen		-	listen		i:ii	listen
 recv		-	recv		i:ipii	__libc_recv	recv

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]