mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-03-22 21:31:19 +08:00
os_dep.c (read): Pass two dummy args to syscall().
2000-06-19 Andrew Haley <aph@cygnus.com> * os_dep.c (read): Pass two dummy args to syscall(). From-SVN: r34598
This commit is contained in:
parent
35b1567d9e
commit
437fa02616
@ -1,3 +1,7 @@
|
||||
2000-06-19 Andrew Haley <aph@cygnus.com>
|
||||
|
||||
* os_dep.c (read): Pass two dummy args to syscall().
|
||||
|
||||
2000-05-11 Bryce McKinlay <bryce@albatross.co.nz>
|
||||
|
||||
Imported 5.0 release version.
|
||||
|
@ -2236,7 +2236,10 @@ word len;
|
||||
result = readv(fd, &iov, 1);
|
||||
}
|
||||
# else
|
||||
result = syscall(SYS_read, fd, buf, nbyte);
|
||||
/* The two zero args at the end of this list are because one
|
||||
IA-64 syscall() implementation actually requires six args
|
||||
to be passed, even though they aren't always used. */
|
||||
result = syscall(SYS_read, fd, buf, nbyte, 0, 0);
|
||||
# endif
|
||||
GC_end_syscall();
|
||||
return(result);
|
||||
|
Loading…
x
Reference in New Issue
Block a user