]> granicus.if.org Git - gc/commitdiff
2000-06-19 Andrew Haley <aph@cygnus.com>
authoraph <aph@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 19 Jun 2000 18:46:45 +0000 (18:46 +0000)
committerguest <ivmai@mail.ru>
Fri, 29 Jul 2011 06:54:18 +0000 (10:54 +0400)
        * os_dep.c (read): Pass two dummy args to syscall().

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@34598 138bc75d-0d04-0410-961f-82ee72b054a4

ChangeLog
os_dep.c

index 628559087a04a40695a8da3f09d7ef200d607e1d..f5b5fb4488e73d39cd77fb6b7f12d8bb098f082d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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.
index b169eebcbcf88798190fb78ba6ba39b1cbb0b666..87f84e7bccdc248c623efa1fa9b85b7413c780e3 100644 (file)
--- a/os_dep.c
+++ b/os_dep.c
@@ -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);