mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* ruby_atomic.h: renamed from atomic.h to avoid header file name conflict
on Solaris 10. [ruby-dev:46414] [Bug #7287] * gc.c, signal.c, vm_core.h, common.mk: reflect the rename from atomic.h to ruby_atomic.h. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@37604 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
c4e1ecef13
commit
05a05cc62b
6 changed files with 12 additions and 4 deletions
|
@ -1,3 +1,11 @@
|
|||
Sat Nov 10 00:49:26 2012 Naohisa Goto <ngotogenome@gmail.com>
|
||||
|
||||
* ruby_atomic.h: renamed from atomic.h to avoid header file name
|
||||
conflict on Solaris 10. [ruby-dev:46414] [Bug #7287]
|
||||
|
||||
* gc.c, signal.c, vm_core.h, common.mk: reflect the rename from
|
||||
atomic.h to ruby_atomic.h.
|
||||
|
||||
Sat Nov 10 00:46:57 2012 Naohisa Goto <ngotogenome@gmail.com>
|
||||
|
||||
* atomic.h: Revert r37491 which is a temporary workaroud.
|
||||
|
|
|
@ -610,7 +610,7 @@ RUBY_H_INCLUDES = {$(VPATH)}ruby.h {$(VPATH)}config.h {$(VPATH)}defines.h \
|
|||
ENCODING_H_INCLUDES= {$(VPATH)}encoding.h {$(VPATH)}oniguruma.h
|
||||
ID_H_INCLUDES = {$(VPATH)}id.h
|
||||
VM_CORE_H_INCLUDES = {$(VPATH)}vm_core.h {$(VPATH)}thread_$(THREAD_MODEL).h \
|
||||
{$(VPATH)}node.h {$(VPATH)}method.h {$(VPATH)}atomic.h \
|
||||
{$(VPATH)}node.h {$(VPATH)}method.h {$(VPATH)}ruby_atomic.h \
|
||||
$(ID_H_INCLUDES)
|
||||
|
||||
addr2line.$(OBJEXT): {$(VPATH)}addr2line.c {$(VPATH)}addr2line.h {$(VPATH)}config.h
|
||||
|
|
2
gc.c
2
gc.c
|
@ -22,7 +22,7 @@
|
|||
#include "internal.h"
|
||||
#include "gc.h"
|
||||
#include "constant.h"
|
||||
#include "atomic.h"
|
||||
#include "ruby_atomic.h"
|
||||
#include <stdio.h>
|
||||
#include <setjmp.h>
|
||||
#include <sys/types.h>
|
||||
|
|
2
signal.c
2
signal.c
|
@ -16,7 +16,7 @@
|
|||
#include <signal.h>
|
||||
#include <stdio.h>
|
||||
#include <errno.h>
|
||||
#include "atomic.h"
|
||||
#include "ruby_atomic.h"
|
||||
|
||||
#if defined(__native_client__) && defined(NACL_NEWLIB)
|
||||
# include "nacl/signal.h"
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
#include "vm_opts.h"
|
||||
#include "id.h"
|
||||
#include "method.h"
|
||||
#include "atomic.h"
|
||||
#include "ruby_atomic.h"
|
||||
|
||||
#if defined(_WIN32)
|
||||
#include "thread_win32.h"
|
||||
|
|
Loading…
Reference in a new issue