1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-29 11:41:21 +03:00
* sysdeps/unix/sysv/linux/mips/sysdep.h: New file.

	* sysdeps/unix/sysv/linux/mips/sys/syscall.h: Removed.

	* sysdeps/unix/mips/sysdep.h: Use SYS_ify.
	Patches by "Maciej W. Rozycki" <macro@ds2.pg.gda.pl>.
This commit is contained in:
Andreas Jaeger
2000-12-05 17:41:15 +00:00
parent 48896b9dba
commit 9fbbbe69dc
4 changed files with 45 additions and 1228 deletions

View File

@ -40,7 +40,7 @@
ENTRY(name) \
.set noreorder; \
.cpload t9; \
li v0, SYS_##syscall_name; \
li v0, SYS_ify(syscall_name); \
syscall; \
.set reorder; \
bne a3, zero, 99b; \
@ -52,7 +52,7 @@ syse1:
99: j __syscall_error; \
ENTRY(name) \
.set noreorder; \
li v0, SYS_##syscall_name; \
li v0, SYS_ify(syscall_name); \
syscall; \
.set reorder; \
bne a3, zero, 99b; \