mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* include/ruby/defines.h (flush_register_windows): call "ta 0x03"
even on Linux/Sparc. [ruby-dev:31674] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13298 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
41585e424b
commit
3783246a2e
3 changed files with 10 additions and 7 deletions
|
@ -1,3 +1,8 @@
|
|||
Wed Aug 29 10:46:37 2007 Yukihiro Matsumoto <matz@ruby-lang.org>
|
||||
|
||||
* include/ruby/defines.h (flush_register_windows): call "ta 0x03"
|
||||
even on Linux/Sparc. [ruby-dev:31674]
|
||||
|
||||
Tue Aug 28 19:16:00 2007 Masaki Suketa <masaki.suketa@nifty.ne.jp>
|
||||
|
||||
* ext/win32ole/win32ole.c (ole_type_progid): progid getted by
|
||||
|
|
|
@ -231,10 +231,8 @@ flush_register_windows(void)
|
|||
#endif
|
||||
# if defined(__sparc_v9__) || defined(__sparcv9) || defined(__arch64__)
|
||||
("flushw")
|
||||
# elif defined(linux) || defined(__linux__)
|
||||
("ta 0x83")
|
||||
# else /* Solaris, OpenBSD, NetBSD, etc. */
|
||||
("ta 0x03")
|
||||
# else
|
||||
("ta 0x03")
|
||||
# endif /* trap always to flush register windows if we are on a Sparc system */
|
||||
;
|
||||
}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#define RUBY_VERSION "1.9.0"
|
||||
#define RUBY_RELEASE_DATE "2007-08-28"
|
||||
#define RUBY_RELEASE_DATE "2007-08-29"
|
||||
#define RUBY_VERSION_CODE 190
|
||||
#define RUBY_RELEASE_CODE 20070828
|
||||
#define RUBY_RELEASE_CODE 20070829
|
||||
#define RUBY_PATCHLEVEL 0
|
||||
|
||||
#define RUBY_VERSION_MAJOR 1
|
||||
|
@ -9,7 +9,7 @@
|
|||
#define RUBY_VERSION_TEENY 0
|
||||
#define RUBY_RELEASE_YEAR 2007
|
||||
#define RUBY_RELEASE_MONTH 8
|
||||
#define RUBY_RELEASE_DAY 28
|
||||
#define RUBY_RELEASE_DAY 29
|
||||
|
||||
#ifdef RUBY_EXTERN
|
||||
RUBY_EXTERN const char ruby_version[];
|
||||
|
|
Loading…
Reference in a new issue