diff options
author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-09-12 15:23:54 +0000 |
---|---|---|
committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-09-12 15:23:54 +0000 |
commit | 35a84adff01996abe5d21dec423cc45691774199 (patch) | |
tree | e769f3cbc6d0d5e01042a2088ba78a09d9c6abcc | |
parent | 757f06fdc75263b16cb041e003de968e63c285ce (diff) |
* test/dbm/test_dbm.rb: remove locking test, which may not be
supported on some platforms. [ruby-dev:27030]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9134 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | array.c | 1 | ||||
-rw-r--r-- | compar.c | 1 | ||||
-rw-r--r-- | io.c | 2 |
4 files changed, 7 insertions, 4 deletions
@@ -38,6 +38,11 @@ Mon Sep 12 19:26:29 2005 Hirokazu Yamamoto <[email protected]> sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c, version.c: ditto. +Mon Sep 12 14:03:33 2005 Yukihiro Matsumoto <[email protected]> + + * test/dbm/test_dbm.rb: remove locking test, which may not be + supported on some platforms. [ruby-dev:27030] + Sun Sep 11 23:23:02 2005 Shugo Maeda <[email protected]> * lib/net/imap.rb (starttls): supported the STARTTLS command. @@ -49,7 +54,7 @@ Sun Sep 11 22:18:07 2005 Masatoshi SEKI <[email protected]> Sat Sep 10 22:34:19 2005 Yukihiro Matsumoto <[email protected]> - * array.c: protoize. + * array.c, bignum.c: protoize. Sat Sep 10 00:23:01 2005 Yukihiro Matsumoto <[email protected]> @@ -23,7 +23,6 @@ static ID id_cmp; #define ARY_DEFAULT_SIZE 16 - void rb_mem_clear(register VALUE *mem, register long size) { @@ -135,7 +135,6 @@ cmp_lt(VALUE x, VALUE y) return Qfalse; } - /* * call-seq: * obj <= other => true or false @@ -130,7 +130,7 @@ static VALUE lineno = INT2FIX(0); #elif defined(__BEOS__) # define STDIO_READ_DATA_PENDING(fp) (fp->_state._eof == 0) #elif defined(__VMS) -# define STDIO_READ_DATA_PENDING(fp) (((unsigned int)(*(fp))->_cnt) > 0) +# define STDIO_READ_DATA_PENDING(fp) (((unsigned int)(*(fp))->_cnt) > 0) #else # define STDIO_READ_DATA_PENDING(fp) (!feof(fp)) #endif |