From 946f7fc7888f61da879c660b43e2c574aaf713eb Mon Sep 17 00:00:00 2001 From: kosaki Date: Sun, 9 Sep 2012 17:11:25 +0000 Subject: [PATCH] * io.c (nogvl_close, maygvl_close, nogvl_fclose, maygvl_fclose): suppress integer <-> pointer cast warnings. [Feature #4570] [ruby-core:35711] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36943 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 6 ++++++ io.c | 8 ++++---- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index a8f2427857..c25a32cdef 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +Mon Sep 10 01:38:51 2012 KOSAKI Motohiro + + * io.c (nogvl_close, maygvl_close, nogvl_fclose, maygvl_fclose): + suppress integer <-> pointer cast warnings. + [Feature #4570] [ruby-core:35711] + Mon Sep 10 01:36:00 2012 KOSAKI Motohiro * io.c (rb_io_close): notify fd close before releasing gvl. diff --git a/io.c b/io.c index 7be2df383d..57f5775c41 100644 --- a/io.c +++ b/io.c @@ -3858,7 +3858,7 @@ nogvl_close(void *ptr) { int *fd = ptr; - return (void*)close(*fd); + return (void*)(intptr_t)close(*fd); } static int @@ -3871,7 +3871,7 @@ maygvl_close(int fd, int keepgvl) * close() may block for certain file types (NFS, SO_LINGER sockets, * inotify), so let other threads run. */ - return (int)rb_thread_call_without_gvl(nogvl_close, &fd, RUBY_UBF_IO, 0); + return (int)(intptr_t)rb_thread_call_without_gvl(nogvl_close, &fd, RUBY_UBF_IO, 0); } static void* @@ -3879,7 +3879,7 @@ nogvl_fclose(void *ptr) { FILE *file = ptr; - return (void*)fclose(file); + return (void*)(intptr_t)fclose(file); } static int @@ -3888,7 +3888,7 @@ maygvl_fclose(FILE *file, int keepgvl) if (keepgvl) return fclose(file); - return (int)rb_thread_call_without_gvl(nogvl_fclose, file, RUBY_UBF_IO, 0); + return (int)(intptr_t)rb_thread_call_without_gvl(nogvl_fclose, file, RUBY_UBF_IO, 0); } static void