This is the mail archive of the libc-hacker@sources.redhat.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]
Other format: [Raw text]

[PATCH] Fix IA-64 build


On Sun, Aug 04, 2002 at 11:53:04PM +0200, Jakub Jelinek wrote:
> IA-64 doesn't build either (even with this patch), will look into it tomorrow morning.

I believe this should fix it (bootstrap pending).
__lseek was defined in both lseek.os and llseek.os (and __llseek nowhere).

2002-08-05  Jakub Jelinek  <jakub@redhat.com>

	* sysdeps/unix/sysv/linux/ia64/syscalls.list (llseek): Provide
	__llseek alias, not __lseek.
	* sysdeps/unix/sysv/linux/s390/s390-64/syscalls.list (llseek):
	Likewise.

	* manual/debug.texi (%MENU%): Remove trailing dot.
	Reported by <hayastan132@hotmail.com>.

--- libc/manual/debug.texi.jj	2002-08-04 21:57:15.000000000 +0200
+++ libc/manual/debug.texi	2002-08-05 00:41:19.000000000 +0200
@@ -1,6 +1,6 @@
 @node Debugging Support
 @c @node Debugging Support, , Cryptographic Functions, Top
-@c %MENU% Functions to help debugging applications.
+@c %MENU% Functions to help debugging applications
 @chapter Debugging support
 
 Applications are usually debugged using dedicated debugger programs.
--- libc/sysdeps/unix/sysv/linux/ia64/syscalls.list.jj	2002-08-04 20:23:28.000000000 +0200
+++ libc/sysdeps/unix/sysv/linux/ia64/syscalls.list	2002-08-05 00:40:02.000000000 +0200
@@ -3,7 +3,7 @@
 umount2		-	umount		2	__umount2	umount2
 
 # Whee! 64-bit systems naturally implement llseek.
-llseek		EXTRA	lseek		3	__libc_lseek64	__lseek llseek __lseek64 lseek64
+llseek		EXTRA	lseek		3	__libc_lseek64	__llseek llseek __lseek64 lseek64
 pread		-	pread		4	__libc_pread	__libc_pread64 __pread pread __pread64 pread64
 pwrite		-	pwrite		4	__libc_pwrite	__libc_pwrite64 __pwrite pwrite __pwrite64 pwrite64
 fstatfs		-	fstatfs		i:ip	__fstatfs	fstatfs fstatfs64 __fstatfs64
--- libc/sysdeps/unix/sysv/linux/s390/s390-64/syscalls.list.jj	2002-08-04 20:23:28.000000000 +0200
+++ libc/sysdeps/unix/sysv/linux/s390/s390-64/syscalls.list	2002-08-05 00:40:37.000000000 +0200
@@ -1,6 +1,6 @@
 # File name	Caller	Syscall name	# args	Strong name	Weak names
 
-llseek		EXTRA	lseek		3	__libc_lseek64	__lseek llseek __lseek64 lseek64
+llseek		EXTRA	lseek		3	__libc_lseek64	__llseek llseek __lseek64 lseek64
 pread		-	pread		4	__libc_pread	__libc_pread64 __pread pread __pread64 pread64
 pwrite		-	pwrite		4	__libc_pwrite	__libc_pwrite64 __pwrite pwrite __pwrite64 pwrite64
 fstatfs		-	fstatfs		i:ip	__fstatfs	fstatfs fstatfs64 __fstatfs64


	Jakub


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