mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
see ChangeLog
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@730 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
5a14067390
commit
76d09411e9
4 changed files with 16 additions and 3 deletions
|
@ -1,3 +1,11 @@
|
|||
Mon Jun 5 00:18:08 2000 WATANABE Hirofumi <eban@os.rim.or.jp>
|
||||
|
||||
* bignum.c: avoid conflict with USHORT on mingw32.
|
||||
|
||||
Mon Jun 5 00:13:35 2000 WATANABE Hirofumi <eban@os.rim.or.jp>
|
||||
|
||||
* eval.c (rb_thread_schedule): =/== typo.
|
||||
|
||||
Sun Jun 4 03:17:36 2000 Wakou Aoyama <wakou@fsinet.or.jp>
|
||||
|
||||
* lib/cig.rb: improve: CGI::pretty()
|
||||
|
|
5
bignum.c
5
bignum.c
|
@ -15,6 +15,11 @@
|
|||
#include <ctype.h>
|
||||
|
||||
VALUE rb_cBignum;
|
||||
|
||||
#if defined __MINGW32__
|
||||
#define USHORT _USHORT
|
||||
#endif
|
||||
|
||||
typedef unsigned short USHORT;
|
||||
|
||||
#define BDIGITS(x) ((USHORT*)RBIGNUM(x)->digits)
|
||||
|
|
2
eval.c
2
eval.c
|
@ -6828,7 +6828,7 @@ rb_thread_schedule()
|
|||
n = select(max+1, &readfds, &writefds, &exceptfds, delay_ptr);
|
||||
if (n < 0) {
|
||||
if (rb_trap_pending) rb_trap_exec();
|
||||
if (errno = EINTR) goto again;
|
||||
if (errno == EINTR) goto again;
|
||||
FOREACH_THREAD(th) {
|
||||
if (th->wait_for & WAIT_SELECT) {
|
||||
int v = 0;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#define RUBY_VERSION "1.5.4"
|
||||
#define RUBY_RELEASE_DATE "2000-06-01"
|
||||
#define RUBY_RELEASE_DATE "2000-06-05"
|
||||
#define RUBY_VERSION_CODE 154
|
||||
#define RUBY_RELEASE_CODE 20000601
|
||||
#define RUBY_RELEASE_CODE 20000605
|
||||
|
|
Loading…
Reference in a new issue