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/read.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/read.c')
-rw-r--r--libgloss/spu/read.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libgloss/spu/read.c b/libgloss/spu/read.c
index 580610809..178e85087 100644
--- a/libgloss/spu/read.c
+++ b/libgloss/spu/read.c
@@ -44,7 +44,7 @@ read (int file, void *ptr, size_t len)
sys.ptr = ( unsigned int )ptr;
sys.len = len;
- _send_to_ppe_0x2101 (JSRE_READ, &sys);
+ _send_to_ppe (JSRE_POSIX1_SIGNALCODE, JSRE_READ, &sys);
errno = psys_out->err;
return ( psys_out->rc);