Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Johnston <jjohnstn@redhat.com>2006-08-30 23:06:48 +0400
committerJeff Johnston <jjohnstn@redhat.com>2006-08-30 23:06:48 +0400
commit52d82ba5277b854196ed538aa5966155abbfd225 (patch)
tree5e1acb16ec97eac22fe2abd6aae78235f7db6291 /libgloss/spu/fstat.c
parent6f91c38b890386ab43e7dd66760d7f296bffb539 (diff)
2006-08-30 Kazunori Asayama <asayama@sm.sony.co.jp>
* spu/syscalls.c: Add a new argument to _send_to_ppe() to specify signal code. * spu/jsre.h: Update declaration of _send_to_ppe(). * spu/close.c: Replace _send_to_ppe_0x2101() by _send_to_ppe(). * spu/fstat.c: Ditto. * spu/lseek.c: Ditto. * spu/open.c: Ditto. * spu/read.c: Ditto. * spu/stat.c: Ditto. * spu/unlink.c: Ditto. * spu/write.c: Ditto.
Diffstat (limited to 'libgloss/spu/fstat.c')
-rw-r--r--libgloss/spu/fstat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libgloss/spu/fstat.c b/libgloss/spu/fstat.c
index 7a4920239..cd58c2928 100644
--- a/libgloss/spu/fstat.c
+++ b/libgloss/spu/fstat.c
@@ -44,7 +44,7 @@ fstat (int file, struct stat *pstat)
sys.file = file;
sys.ptr = ( unsigned int )&pjstat;
- _send_to_ppe_0x2101 (JSRE_FSTAT, &sys);
+ _send_to_ppe (JSRE_POSIX1_SIGNALCODE, JSRE_FSTAT, &sys);
pstat->st_dev = pjstat.dev;
pstat->st_ino = pjstat.ino;