ruby-changes:17462
From: nobu <ko1@a...>
Date: Tue, 12 Oct 2010 23:59:35 +0900 (JST)
Subject: [ruby-changes:17462] Ruby:r29467 (trunk): * win32/win32.c (rb_w32_open_osfhandle, rb_w32_wopen, rb_w32_pipe):
nobu 2010-10-12 23:58:23 +0900 (Tue, 12 Oct 2010) New Revision: 29467 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=29467 Log: * win32/win32.c (rb_w32_open_osfhandle, rb_w32_wopen, rb_w32_pipe): use uintptr_t instead of long for win64. * win32/win32.c (socketpair_internal): suppress warnings. * win32/win32.c (ftruncate): use HANDLE instead of long for win64. Modified files: trunk/ChangeLog trunk/win32/win32.c Index: ChangeLog =================================================================== --- ChangeLog (revision 29466) +++ ChangeLog (revision 29467) @@ -1,5 +1,12 @@ -Tue Oct 12 23:55:11 2010 Nobuyoshi Nakada <nobu@r...> +Tue Oct 12 23:58:19 2010 Nobuyoshi Nakada <nobu@r...> + * win32/win32.c (rb_w32_open_osfhandle, rb_w32_wopen, rb_w32_pipe): + use uintptr_t instead of long for win64. + + * win32/win32.c (socketpair_internal): suppress warnings. + + * win32/win32.c (ftruncate): use HANDLE instead of long for win64. + * vsnprintf.c (BSD_vfprintf): fix cast. * numeric.c (rb_num2fix): result of rb_num2long is SIGNED_VALUE. Index: win32/win32.c =================================================================== --- win32/win32.c (revision 29466) +++ win32/win32.c (revision 29467) @@ -2078,7 +2078,7 @@ /* attempt to allocate a C Runtime file handle */ hF = CreateFile("NUL", 0, 0, NULL, OPEN_ALWAYS, 0, NULL); - fh = _open_osfhandle((long)hF, 0); + fh = _open_osfhandle((intptr_t)hF, 0); CloseHandle(hF); if (fh == -1) { errno = EMFILE; /* too many open files */ @@ -3434,6 +3434,8 @@ return -1; } + sv[0] = (SOCKET)INVALID_HANDLE_VALUE; + sv[1] = (SOCKET)INVALID_HANDLE_VALUE; RUBY_CRITICAL({ do { svr = open_ifs_socket(af, type, protocol); @@ -4381,16 +4383,16 @@ int ftruncate(int fd, off_t length) { - long h; + HANDLE h; #ifdef WIN95 if (IsWin95()) { return chsize(fd, (unsigned long)length); } #endif - h = _get_osfhandle(fd); - if (h == -1) return -1; - return rb_chsize((HANDLE)h, length); + h = (HANDLE)_get_osfhandle(fd); + if (h == (HANDLE)-1) return -1; + return rb_chsize(h, length); } #ifdef __BORLANDC__ @@ -4884,7 +4886,7 @@ /* allocate a C Runtime file handle */ RUBY_CRITICAL({ h = CreateFile("NUL", 0, 0, NULL, OPEN_ALWAYS, 0, NULL); - fd = _open_osfhandle((long)h, 0); + fd = _open_osfhandle((intptr_t)h, 0); CloseHandle(h); }); if (fd == -1) { @@ -4893,7 +4895,7 @@ } RUBY_CRITICAL({ MTHREAD_ONLY(EnterCriticalSection(&(_pioinfo(fd)->lock))); - _set_osfhnd(fd, (long)INVALID_HANDLE_VALUE); + _set_osfhnd(fd, (intptr_t)INVALID_HANDLE_VALUE); _set_osflags(fd, 0); h = CreateFileW(file, access, FILE_SHARE_READ | FILE_SHARE_WRITE, &sec, @@ -4922,7 +4924,7 @@ if (!(flags & (FDEV | FPIPE)) && (oflag & O_APPEND)) flags |= FAPPEND; - _set_osfhnd(fd, (long)h); + _set_osfhnd(fd, (intptr_t)h); _osfile(fd) = flags | FOPEN; MTHREAD_ONLY(LeaveCriticalSection(&_pioinfo(fd)->lock)); @@ -5003,7 +5005,7 @@ RUBY_CRITICAL(do { ret = 0; h = CreateFile("NUL", 0, 0, NULL, OPEN_ALWAYS, 0, NULL); - fdRead = _open_osfhandle((long)h, 0); + fdRead = _open_osfhandle((intptr_t)h, 0); CloseHandle(h); if (fdRead == -1) { errno = EMFILE; @@ -5014,7 +5016,7 @@ } MTHREAD_ONLY(EnterCriticalSection(&(_pioinfo(fdRead)->lock))); - _set_osfhnd(fdRead, (long)hRead); + _set_osfhnd(fdRead, (intptr_t)hRead); _set_osflags(fdRead, FOPEN | FPIPE | FNOINHERIT); MTHREAD_ONLY(LeaveCriticalSection(&(_pioinfo(fdRead)->lock))); } while (0)); @@ -5023,7 +5025,7 @@ RUBY_CRITICAL(do { h = CreateFile("NUL", 0, 0, NULL, OPEN_ALWAYS, 0, NULL); - fdWrite = _open_osfhandle((long)h, 0); + fdWrite = _open_osfhandle((intptr_t)h, 0); CloseHandle(h); if (fdWrite == -1) { errno = EMFILE; @@ -5032,7 +5034,7 @@ break; } MTHREAD_ONLY(EnterCriticalSection(&(_pioinfo(fdWrite)->lock))); - _set_osfhnd(fdWrite, (long)hWrite); + _set_osfhnd(fdWrite, (intptr_t)hWrite); _set_osflags(fdWrite, FOPEN | FPIPE | FNOINHERIT); MTHREAD_ONLY(LeaveCriticalSection(&(_pioinfo(fdWrite)->lock))); } while (0)); -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/