mirror of
https://github.com/ruby/ruby.git
synced 2025-09-19 10:33:58 +02:00
merge revision(s) 36138: [Backport #6607]
* include/ruby/backward/rubysig.h: fix visibility. [Bug #6607] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_3@38315 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
190156054e
commit
985a8067cd
3 changed files with 13 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
Tue Dec 11 17:52:30 2012 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
|
* include/ruby/backward/rubysig.h: fix visibility. [Bug #6607]
|
||||||
|
|
||||||
Tue Dec 11 17:49:45 2012 Koichi Sasada <ko1@atdot.net>
|
Tue Dec 11 17:49:45 2012 Koichi Sasada <ko1@atdot.net>
|
||||||
|
|
||||||
* vm.c (rb_vm_make_env_object): make Proc object if Env is possible
|
* vm.c (rb_vm_make_env_object): make Proc object if Env is possible
|
||||||
|
|
|
@ -27,6 +27,10 @@ extern "C" {
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if defined __GNUC__ && __GNUC__ >= 4
|
||||||
|
#pragma GCC visibility push(default)
|
||||||
|
#endif
|
||||||
|
|
||||||
struct rb_blocking_region_buffer;
|
struct rb_blocking_region_buffer;
|
||||||
DEPRECATED(RUBY_EXTERN struct rb_blocking_region_buffer *rb_thread_blocking_region_begin(void));
|
DEPRECATED(RUBY_EXTERN struct rb_blocking_region_buffer *rb_thread_blocking_region_begin(void));
|
||||||
DEPRECATED(RUBY_EXTERN void rb_thread_blocking_region_end(struct rb_blocking_region_buffer *));
|
DEPRECATED(RUBY_EXTERN void rb_thread_blocking_region_end(struct rb_blocking_region_buffer *));
|
||||||
|
@ -38,6 +42,10 @@ DEPRECATED(RUBY_EXTERN void rb_thread_blocking_region_end(struct rb_blocking_reg
|
||||||
#define ALLOW_INTS do {CHECK_INTS;} while (0)
|
#define ALLOW_INTS do {CHECK_INTS;} while (0)
|
||||||
#define CHECK_INTS rb_thread_check_ints()
|
#define CHECK_INTS rb_thread_check_ints()
|
||||||
|
|
||||||
|
#if defined __GNUC__ && __GNUC__ >= 4
|
||||||
|
#pragma GCC visibility pop
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(__cplusplus)
|
#if defined(__cplusplus)
|
||||||
#if 0
|
#if 0
|
||||||
{ /* satisfy cc-mode */
|
{ /* satisfy cc-mode */
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#define RUBY_VERSION "1.9.3"
|
#define RUBY_VERSION "1.9.3"
|
||||||
#define RUBY_PATCHLEVEL 334
|
#define RUBY_PATCHLEVEL 335
|
||||||
|
|
||||||
#define RUBY_RELEASE_DATE "2012-12-11"
|
#define RUBY_RELEASE_DATE "2012-12-11"
|
||||||
#define RUBY_RELEASE_YEAR 2012
|
#define RUBY_RELEASE_YEAR 2012
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue