mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
merge revision(s) 54094: [Backport #12171]
* include/ruby/win32.h (O_SHARE_DELETE): change to fit Fixnum limit. [ruby-core:74285] [Bug #12171] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_3@54412 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
e4fdcb540c
commit
6ead2416eb
3 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
Wed Mar 30 00:54:38 2016 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* include/ruby/win32.h (O_SHARE_DELETE): change to fit Fixnum
|
||||
limit. [ruby-core:74285] [Bug #12171]
|
||||
|
||||
Wed Mar 30 00:52:47 2016 Rei Odaira <Rei.Odaira@gmail.com>
|
||||
|
||||
* test/net/imap/test_imap.rb (test_idle_timeout): Because of the
|
||||
|
|
|
@ -127,7 +127,7 @@ typedef unsigned int uintptr_t;
|
|||
|
||||
#define WNOHANG -1
|
||||
|
||||
#define O_SHARE_DELETE 0x80000000 /* for rb_w32_open(), rb_w32_wopen() */
|
||||
#define O_SHARE_DELETE 0x20000000 /* for rb_w32_open(), rb_w32_wopen() */
|
||||
|
||||
typedef int clockid_t;
|
||||
#define CLOCK_REALTIME 0
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#define RUBY_VERSION "2.3.0"
|
||||
#define RUBY_RELEASE_DATE "2016-03-30"
|
||||
#define RUBY_PATCHLEVEL 60
|
||||
#define RUBY_PATCHLEVEL 61
|
||||
|
||||
#define RUBY_RELEASE_YEAR 2016
|
||||
#define RUBY_RELEASE_MONTH 3
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue