summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-09-18 18:29:19 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-09-18 18:29:19 +0000
commit1ad103b7f83ccd0229ed3f61ef2de8c832cb329b (patch)
tree7a8c980e56d242a2bf535d052e4a6e7a5129d7af
parent9af6e57230e0c47b91b249e1892f444d0f9cea2b (diff)
* file.c (rb_thread_flock): wrap the flock system call by
TRAP_BEG/TRAP_END to enable signals. [ruby-dev:27122] * ext/socket/socket.c (bsock_send): wrap the sendto and send system call by TRAP_BEG/TRAP_END to enable signals when writing to a socket which is full. [ruby-dev:27132] * io.c (rb_io_syswrite): wrap the write system call by TRAP_BEG/TRAP_END to run signal hander in syswrite method. [ruby-dev:27134] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9212 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog13
-rw-r--r--ext/socket/socket.c4
-rw-r--r--file.c6
-rw-r--r--io.c2
4 files changed, 24 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index d832c10319..a41647780e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,16 @@
+Mon Sep 19 03:17:48 2005 Tanaka Akira <akr@m17n.org>
+
+ * file.c (rb_thread_flock): wrap the flock system call by
+ TRAP_BEG/TRAP_END to enable signals. [ruby-dev:27122]
+
+ * ext/socket/socket.c (bsock_send): wrap the sendto and send system
+ call by TRAP_BEG/TRAP_END to enable signals when writing to a socket
+ which is full. [ruby-dev:27132]
+
+ * io.c (rb_io_syswrite): wrap the write system call by
+ TRAP_BEG/TRAP_END to run signal hander in syswrite method.
+ [ruby-dev:27134]
+
Sun Sep 18 02:10:47 2005 why the lucky stiff <why@ruby-lang.org>
* lib/yaml/rubytypes.rb: remove comments that are bungling up
diff --git a/ext/socket/socket.c b/ext/socket/socket.c
index ca805e5ec3..6a787629f8 100644
--- a/ext/socket/socket.c
+++ b/ext/socket/socket.c
@@ -494,11 +494,15 @@ bsock_send(argc, argv, sock)
rb_thread_fd_writable(fd);
retry:
if (!NIL_P(to)) {
+ TRAP_BEG;
n = sendto(fd, RSTRING(mesg)->ptr, RSTRING(mesg)->len, NUM2INT(flags),
(struct sockaddr*)RSTRING(to)->ptr, RSTRING(to)->len);
+ TRAP_END;
}
else {
+ TRAP_BEG;
n = send(fd, RSTRING(mesg)->ptr, RSTRING(mesg)->len, NUM2INT(flags));
+ TRAP_END;
}
if (n < 0) {
if (rb_io_wait_writable(fd)) {
diff --git a/file.c b/file.c
index 4e58a538c9..740ec77bda 100644
--- a/file.c
+++ b/file.c
@@ -2884,7 +2884,11 @@ static int
rb_thread_flock(int fd, int op, OpenFile *fptr)
{
if (rb_thread_alone() || (op & LOCK_NB)) {
- return flock(fd, op);
+ int ret;
+ TRAP_BEG;
+ ret = flock(fd, op);
+ TRAP_END;
+ return ret;
}
op |= LOCK_NB;
while (flock(fd, op) < 0) {
diff --git a/io.c b/io.c
index 51c2ffcadc..04e46e085d 100644
--- a/io.c
+++ b/io.c
@@ -2256,7 +2256,9 @@ rb_io_syswrite(VALUE io, VALUE str)
if (!rb_thread_fd_writable(fptr->fd)) {
rb_io_check_closed(fptr);
}
+ TRAP_BEG;
n = write(fptr->fd, RSTRING(str)->ptr, RSTRING(str)->len);
+ TRAP_END;
if (n == -1) rb_sys_fail(fptr->path);