[前][次][番号順一覧][スレッド一覧]

ruby-changes:1900

From: ko1@a...
Date: 7 Sep 2007 16:34:08 +0900
Subject: [ruby-changes:1900] shyouhei - Ruby:r13391 (ruby_1_8_6): * include/ruby/defines.h (flush_register_windows): call "ta 0x03"

shyouhei	2007-09-07 16:33:58 +0900 (Fri, 07 Sep 2007)

  New Revision: 13391

  Modified files:
    branches/ruby_1_8_6/ChangeLog
    branches/ruby_1_8_6/defines.h
    branches/ruby_1_8_6/version.h

  Log:
    * include/ruby/defines.h (flush_register_windows): call "ta 0x03"
      even on Linux/Sparc.  [ruby-dev:31674]


  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/branches/ruby_1_8_6/ChangeLog?r1=13391&r2=13390
  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/branches/ruby_1_8_6/version.h?r1=13391&r2=13390
  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/branches/ruby_1_8_6/defines.h?r1=13391&r2=13390

Index: ruby_1_8_6/ChangeLog
===================================================================
--- ruby_1_8_6/ChangeLog	(revision 13390)
+++ ruby_1_8_6/ChangeLog	(revision 13391)
@@ -1,3 +1,8 @@
+Fri Sep  7 16:33:23 2007  Yukihiro Matsumoto  <matz@r...>
+
+	* include/ruby/defines.h (flush_register_windows): call "ta 0x03"
+	  even on Linux/Sparc.  [ruby-dev:31674]
+
 Fri Sep  7 16:09:39 2007  Masaki Suketa  <masaki.suketa@n...>
 
 	* ext/win32ole/win32ole.c (ole_type_progid, reg_enum_key, 
Index: ruby_1_8_6/version.h
===================================================================
--- ruby_1_8_6/version.h	(revision 13390)
+++ ruby_1_8_6/version.h	(revision 13391)
@@ -2,7 +2,7 @@
 #define RUBY_RELEASE_DATE "2007-09-07"
 #define RUBY_VERSION_CODE 186
 #define RUBY_RELEASE_CODE 20070907
-#define RUBY_PATCHLEVEL 95
+#define RUBY_PATCHLEVEL 96
 
 #define RUBY_VERSION_MAJOR 1
 #define RUBY_VERSION_MINOR 8
Index: ruby_1_8_6/defines.h
===================================================================
--- ruby_1_8_6/defines.h	(revision 13390)
+++ ruby_1_8_6/defines.h	(revision 13391)
@@ -218,9 +218,7 @@
 #endif
 # if defined(__sparc_v9__) || defined(__sparcv9) || defined(__arch64__)
 	("flushw")
-# elif defined(linux) || defined(__linux__)
-	("ta  0x83")
-# else /* Solaris, OpenBSD, NetBSD, etc. */
+# else
 	("ta  0x03")
 # endif /* trap always to flush register windows if we are on a Sparc system */
 	;

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml

[前][次][番号順一覧][スレッド一覧]