1998-01-16 07:13:05 -05:00
|
|
|
/************************************************
|
|
|
|
|
|
|
|
defines.h -
|
|
|
|
|
|
|
|
$Author$
|
|
|
|
created at: Wed May 18 00:21:44 JST 1994
|
|
|
|
|
|
|
|
************************************************/
|
2007-06-09 23:06:15 -04:00
|
|
|
|
|
|
|
#ifndef RUBY_DEFINES_H
|
|
|
|
#define RUBY_DEFINES_H 1
|
|
|
|
|
|
|
|
#if defined(__cplusplus)
|
|
|
|
extern "C" {
|
|
|
|
#if 0
|
|
|
|
} /* satisfy cc-mode */
|
|
|
|
#endif
|
|
|
|
#endif
|
1998-01-16 07:13:05 -05:00
|
|
|
|
2010-07-27 05:33:55 -04:00
|
|
|
#include "ruby/config.h"
|
|
|
|
#ifdef RUBY_EXTCONF_H
|
|
|
|
#include RUBY_EXTCONF_H
|
|
|
|
#endif
|
|
|
|
|
1998-01-16 07:13:05 -05:00
|
|
|
#define RUBY
|
|
|
|
|
2011-02-03 02:37:22 -05:00
|
|
|
# include <stddef.h>
|
|
|
|
#ifdef HAVE_STDLIB_H
|
|
|
|
# include <stdlib.h>
|
|
|
|
#endif
|
2002-02-18 04:52:48 -05:00
|
|
|
#ifdef __cplusplus
|
|
|
|
# ifndef HAVE_PROTOTYPES
|
|
|
|
# define HAVE_PROTOTYPES 1
|
|
|
|
# endif
|
|
|
|
# ifndef HAVE_STDARG_PROTOTYPES
|
|
|
|
# define HAVE_STDARG_PROTOTYPES 1
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#undef _
|
|
|
|
#ifdef HAVE_PROTOTYPES
|
|
|
|
# define _(args) args
|
|
|
|
#else
|
|
|
|
# define _(args) ()
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#undef __
|
|
|
|
#ifdef HAVE_STDARG_PROTOTYPES
|
|
|
|
# define __(args) args
|
|
|
|
#else
|
|
|
|
# define __(args) ()
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
#define ANYARGS ...
|
|
|
|
#else
|
|
|
|
#define ANYARGS
|
|
|
|
#endif
|
|
|
|
|
2010-07-21 17:38:25 -04:00
|
|
|
#if defined __GNUC__ && __GNUC__ >= 4
|
|
|
|
#pragma GCC visibility push(default)
|
|
|
|
#endif
|
|
|
|
|
2002-02-18 04:52:48 -05:00
|
|
|
#define xmalloc ruby_xmalloc
|
2005-10-05 12:15:16 -04:00
|
|
|
#define xmalloc2 ruby_xmalloc2
|
2002-02-18 04:52:48 -05:00
|
|
|
#define xcalloc ruby_xcalloc
|
|
|
|
#define xrealloc ruby_xrealloc
|
2005-10-05 12:15:16 -04:00
|
|
|
#define xrealloc2 ruby_xrealloc2
|
2002-02-18 04:52:48 -05:00
|
|
|
#define xfree ruby_xfree
|
|
|
|
|
2005-12-06 02:52:18 -05:00
|
|
|
void *xmalloc(size_t);
|
|
|
|
void *xmalloc2(size_t,size_t);
|
|
|
|
void *xcalloc(size_t,size_t);
|
|
|
|
void *xrealloc(void*,size_t);
|
|
|
|
void *xrealloc2(void*,size_t,size_t);
|
* bignum.c: changed `foo _((boo))' to `foo(boo)`. [ruby-dev:27056]
* defines.h, dir.c, dln.h, enumerator.c, env.h, error.c, eval.c, file.c,
gc.c, hash.c, inits.c, intern.h, io.c, lex.c, marshal.c, missing.h,
node.h, numeric.c, pack.c, process.c, re.h, ruby.c, ruby.h, rubyio.h,
rubysig.h, signal.c, sprintf.c, st.h, string.c, struct.c, time.c,
util.c, util.h, variable.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9155 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-14 02:32:32 -04:00
|
|
|
void xfree(void*);
|
2002-02-18 04:52:48 -05:00
|
|
|
|
2007-12-22 01:14:50 -05:00
|
|
|
#define STRINGIZE(expr) STRINGIZE0(expr)
|
|
|
|
#ifndef STRINGIZE0
|
|
|
|
#define STRINGIZE0(expr) #expr
|
|
|
|
#endif
|
|
|
|
|
2001-05-02 00:22:21 -04:00
|
|
|
#if SIZEOF_LONG_LONG > 0
|
|
|
|
# define LONG_LONG long long
|
|
|
|
#elif SIZEOF___INT64 > 0
|
2002-03-14 01:23:46 -05:00
|
|
|
# define HAVE_LONG_LONG 1
|
2001-05-02 00:22:21 -04:00
|
|
|
# define LONG_LONG __int64
|
|
|
|
# undef SIZEOF_LONG_LONG
|
|
|
|
# define SIZEOF_LONG_LONG SIZEOF___INT64
|
|
|
|
#endif
|
|
|
|
|
2002-04-10 04:45:26 -04:00
|
|
|
#if SIZEOF_INT*2 <= SIZEOF_LONG_LONG
|
|
|
|
# define BDIGIT unsigned int
|
|
|
|
# define SIZEOF_BDIGITS SIZEOF_INT
|
|
|
|
# define BDIGIT_DBL unsigned LONG_LONG
|
|
|
|
# define BDIGIT_DBL_SIGNED LONG_LONG
|
2011-05-22 11:37:00 -04:00
|
|
|
# define PRI_BDIGIT_PREFIX ""
|
|
|
|
# define PRI_BDIGIT_DBL_PREFIX PRI_LL_PREFIX
|
2002-04-10 04:45:26 -04:00
|
|
|
#elif SIZEOF_INT*2 <= SIZEOF_LONG
|
|
|
|
# define BDIGIT unsigned int
|
|
|
|
# define SIZEOF_BDIGITS SIZEOF_INT
|
|
|
|
# define BDIGIT_DBL unsigned long
|
|
|
|
# define BDIGIT_DBL_SIGNED long
|
2011-05-22 11:37:00 -04:00
|
|
|
# define PRI_BDIGIT_PREFIX ""
|
|
|
|
# define PRI_BDIGIT_DBL_PREFIX "l"
|
2002-11-18 18:15:01 -05:00
|
|
|
#elif SIZEOF_SHORT*2 <= SIZEOF_LONG
|
2002-04-10 04:45:26 -04:00
|
|
|
# define BDIGIT unsigned short
|
|
|
|
# define SIZEOF_BDIGITS SIZEOF_SHORT
|
|
|
|
# define BDIGIT_DBL unsigned long
|
|
|
|
# define BDIGIT_DBL_SIGNED long
|
2011-05-22 11:37:00 -04:00
|
|
|
# define PRI_BDIGIT_PREFIX "h"
|
|
|
|
# define PRI_BDIGIT_DBL_PREFIX "l"
|
2002-11-18 18:15:01 -05:00
|
|
|
#else
|
|
|
|
# define BDIGIT unsigned short
|
|
|
|
# define SIZEOF_BDIGITS (SIZEOF_LONG/2)
|
|
|
|
# define BDIGIT_DBL unsigned long
|
|
|
|
# define BDIGIT_DBL_SIGNED long
|
2011-05-22 11:37:00 -04:00
|
|
|
# define PRI_BDIGIT_PREFIX "h"
|
|
|
|
# define PRI_BDIGIT_DBL_PREFIX "l"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define PRIdBDIGIT PRI_BDIGIT_PREFIX"d"
|
|
|
|
#define PRIiBDIGIT PRI_BDIGIT_PREFIX"i"
|
|
|
|
#define PRIoBDIGIT PRI_BDIGIT_PREFIX"o"
|
|
|
|
#define PRIuBDIGIT PRI_BDIGIT_PREFIX"u"
|
|
|
|
#define PRIxBDIGIT PRI_BDIGIT_PREFIX"x"
|
|
|
|
#define PRIXBDIGIT PRI_BDIGIT_PREFIX"X"
|
|
|
|
|
|
|
|
#define PRIdBDIGIT_DBL PRI_BDIGIT_DBL_PREFIX"d"
|
|
|
|
#define PRIiBDIGIT_DBL PRI_BDIGIT_DBL_PREFIX"i"
|
|
|
|
#define PRIoBDIGIT_DBL PRI_BDIGIT_DBL_PREFIX"o"
|
|
|
|
#define PRIuBDIGIT_DBL PRI_BDIGIT_DBL_PREFIX"u"
|
|
|
|
#define PRIxBDIGIT_DBL PRI_BDIGIT_DBL_PREFIX"x"
|
|
|
|
#define PRIXBDIGIT_DBL PRI_BDIGIT_DBL_PREFIX"X"
|
2002-04-10 04:45:26 -04:00
|
|
|
|
2004-01-17 12:39:05 -05:00
|
|
|
#ifdef __CYGWIN__
|
|
|
|
#undef _WIN32
|
|
|
|
#endif
|
|
|
|
|
2008-10-04 09:33:22 -04:00
|
|
|
#if defined(_WIN32) || defined(__EMX__)
|
* configure.in, defines.h, dir.c, dir.h, dln.c, error.c,
eval.c, file.c, hash.c, io.c, main.c, missing.c,
process.c, ruby.c, rubysig.h, signal.c, st.c, util.c, util.h,
bcc/Makefile.sub, win32/Makefile.sub, win32/win32.h,
ext/Win32API/Win32API.c, ext/socket/getaddrinfo.c,
ext/socket/getnameinfo.c, ext/socket/socket.c,
ext/tcltklib/stubs.c
: replace "NT" with "_WIN32", add DOSISH_DRIVE_LETTER
* wince/exe.mak : delete \r at the end of lines.
* wince/mswince-ruby17.def : delete rb_obj_become
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3148 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2002-12-14 22:18:08 -05:00
|
|
|
#define DOSISH 1
|
|
|
|
# define DOSISH_DRIVE_LETTER
|
|
|
|
#endif
|
|
|
|
|
2009-02-07 04:02:50 -05:00
|
|
|
#ifdef AC_APPLE_UNIVERSAL_BUILD
|
2008-01-10 21:57:38 -05:00
|
|
|
#undef WORDS_BIGENDIAN
|
|
|
|
#ifdef __BIG_ENDIAN__
|
|
|
|
#define WORDS_BIGENDIAN
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
* configure.in, defines.h, dir.c, dir.h, dln.c, error.c,
eval.c, file.c, hash.c, io.c, main.c, missing.c,
process.c, ruby.c, rubysig.h, signal.c, st.c, util.c, util.h,
bcc/Makefile.sub, win32/Makefile.sub, win32/win32.h,
ext/Win32API/Win32API.c, ext/socket/getaddrinfo.c,
ext/socket/getnameinfo.c, ext/socket/socket.c,
ext/tcltklib/stubs.c
: replace "NT" with "_WIN32", add DOSISH_DRIVE_LETTER
* wince/exe.mak : delete \r at the end of lines.
* wince/mswince-ruby17.def : delete rb_obj_become
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3148 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2002-12-14 22:18:08 -05:00
|
|
|
#ifdef _WIN32
|
2007-06-09 23:06:15 -04:00
|
|
|
#include "ruby/win32.h"
|
1998-01-16 07:13:05 -05:00
|
|
|
#endif
|
|
|
|
|
2008-09-18 20:33:19 -04:00
|
|
|
#if defined(__BEOS__) && !defined(__HAIKU__) && !defined(BONE)
|
2004-04-13 22:03:41 -04:00
|
|
|
#include <net/socket.h> /* intern.h needs fd_set definition */
|
2009-02-06 08:09:44 -05:00
|
|
|
#elif defined (__SYMBIAN32__) && defined (HAVE_SYS_SELECT_H)
|
|
|
|
# include <sys/select.h>
|
2004-04-13 22:03:41 -04:00
|
|
|
#endif
|
|
|
|
|
2009-07-25 11:19:26 -04:00
|
|
|
#ifdef __SYMBIAN32__
|
|
|
|
# define FALSE 0
|
|
|
|
# define TRUE 1
|
|
|
|
#endif
|
|
|
|
|
2005-10-25 13:00:03 -04:00
|
|
|
#ifdef RUBY_EXPORT
|
2003-03-04 09:12:19 -05:00
|
|
|
#undef RUBY_EXTERN
|
2009-07-18 03:03:15 -04:00
|
|
|
|
|
|
|
#ifndef FALSE
|
|
|
|
# define FALSE 0
|
|
|
|
#elif FALSE
|
|
|
|
# error FALSE must be false
|
|
|
|
#endif
|
|
|
|
#ifndef TRUE
|
|
|
|
# define TRUE 1
|
|
|
|
#elif !TRUE
|
|
|
|
# error TRUE must be true
|
|
|
|
#endif
|
|
|
|
|
2000-05-09 00:53:16 -04:00
|
|
|
#endif
|
|
|
|
|
2010-08-14 02:33:06 -04:00
|
|
|
#ifndef RUBY_FUNC_EXPORTED
|
|
|
|
#define RUBY_FUNC_EXPORTED
|
|
|
|
#endif
|
|
|
|
|
2003-03-04 09:12:19 -05:00
|
|
|
#ifndef RUBY_EXTERN
|
|
|
|
#define RUBY_EXTERN extern
|
|
|
|
#endif
|
|
|
|
|
1999-01-19 23:59:39 -05:00
|
|
|
#ifndef EXTERN
|
2003-03-04 09:12:19 -05:00
|
|
|
#define EXTERN RUBY_EXTERN /* deprecated */
|
1999-01-19 23:59:39 -05:00
|
|
|
#endif
|
|
|
|
|
2004-01-21 10:26:11 -05:00
|
|
|
#ifndef RUBY_MBCHAR_MAXSIZE
|
|
|
|
#define RUBY_MBCHAR_MAXSIZE INT_MAX
|
|
|
|
/* MB_CUR_MAX will not work well in C locale */
|
|
|
|
#endif
|
|
|
|
|
2003-01-21 08:52:21 -05:00
|
|
|
#if defined(sparc) || defined(__sparc__)
|
2003-01-04 13:48:24 -05:00
|
|
|
static inline void
|
|
|
|
flush_register_windows(void)
|
|
|
|
{
|
2003-09-25 20:52:49 -04:00
|
|
|
asm
|
|
|
|
#ifdef __GNUC__
|
|
|
|
volatile
|
|
|
|
#endif
|
2011-10-20 00:09:37 -04:00
|
|
|
# if SIZEOF_VOIDP > 4 /* workaround for Debian Sparc quirk */
|
2003-09-26 05:35:44 -04:00
|
|
|
("flushw")
|
2007-08-28 22:15:03 -04:00
|
|
|
# else
|
|
|
|
("ta 0x03")
|
2002-01-04 09:15:33 -05:00
|
|
|
# endif /* trap always to flush register windows if we are on a Sparc system */
|
2003-09-25 20:52:49 -04:00
|
|
|
;
|
2003-01-04 13:48:24 -05:00
|
|
|
}
|
2003-01-21 08:52:21 -05:00
|
|
|
# define FLUSH_REGISTER_WINDOWS flush_register_windows()
|
2006-01-22 08:34:41 -05:00
|
|
|
#elif defined(__ia64)
|
2005-12-27 00:40:04 -05:00
|
|
|
void *rb_ia64_bsp(void);
|
|
|
|
void rb_ia64_flushrs(void);
|
|
|
|
# define FLUSH_REGISTER_WINDOWS rb_ia64_flushrs()
|
2003-01-21 08:52:21 -05:00
|
|
|
#else
|
|
|
|
# define FLUSH_REGISTER_WINDOWS ((void)0)
|
2004-04-13 22:03:41 -04:00
|
|
|
#endif
|
1998-01-16 07:13:05 -05:00
|
|
|
|
* configure.in, defines.h, dir.c, dir.h, dln.c, error.c,
eval.c, file.c, hash.c, io.c, main.c, missing.c,
process.c, ruby.c, rubysig.h, signal.c, st.c, util.c, util.h,
bcc/Makefile.sub, win32/Makefile.sub, win32/win32.h,
ext/Win32API/Win32API.c, ext/socket/getaddrinfo.c,
ext/socket/getnameinfo.c, ext/socket/socket.c,
ext/tcltklib/stubs.c
: replace "NT" with "_WIN32", add DOSISH_DRIVE_LETTER
* wince/exe.mak : delete \r at the end of lines.
* wince/mswince-ruby17.def : delete rb_obj_become
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3148 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2002-12-14 22:18:08 -05:00
|
|
|
#if defined(DOSISH)
|
1999-08-13 01:45:20 -04:00
|
|
|
#define PATH_SEP ";"
|
1999-01-19 23:59:39 -05:00
|
|
|
#else
|
1999-08-13 01:45:20 -04:00
|
|
|
#define PATH_SEP ":"
|
1999-01-19 23:59:39 -05:00
|
|
|
#endif
|
1999-08-13 01:45:20 -04:00
|
|
|
#define PATH_SEP_CHAR PATH_SEP[0]
|
1999-01-19 23:59:39 -05:00
|
|
|
|
2003-06-20 02:22:50 -04:00
|
|
|
#define PATH_ENV "PATH"
|
|
|
|
|
2008-10-04 09:12:13 -04:00
|
|
|
#if defined(DOSISH) && !defined(__EMX__)
|
2003-06-20 02:22:50 -04:00
|
|
|
#define ENV_IGNORECASE
|
|
|
|
#endif
|
|
|
|
|
2008-05-15 02:34:02 -04:00
|
|
|
#ifndef CASEFOLD_FILESYSTEM
|
2011-05-22 21:04:07 -04:00
|
|
|
# if defined DOSISH
|
2008-05-15 02:34:02 -04:00
|
|
|
# define CASEFOLD_FILESYSTEM 1
|
|
|
|
# else
|
|
|
|
# define CASEFOLD_FILESYSTEM 0
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
2007-05-03 09:19:11 -04:00
|
|
|
#ifndef DLEXT_MAXLEN
|
|
|
|
#define DLEXT_MAXLEN 4
|
|
|
|
#endif
|
|
|
|
|
1998-01-16 07:13:05 -05:00
|
|
|
#ifndef RUBY_PLATFORM
|
|
|
|
#define RUBY_PLATFORM "unknown-unknown"
|
|
|
|
#endif
|
|
|
|
|
2009-01-19 03:28:28 -05:00
|
|
|
#ifndef RUBY_ALIAS_FUNCTION_TYPE
|
|
|
|
#define RUBY_ALIAS_FUNCTION_TYPE(type, prot, name, args) \
|
2009-01-19 03:24:10 -05:00
|
|
|
type prot {return name args;}
|
|
|
|
#endif
|
|
|
|
#ifndef RUBY_ALIAS_FUNCTION_VOID
|
|
|
|
#define RUBY_ALIAS_FUNCTION_VOID(prot, name, args) \
|
|
|
|
void prot {name args;}
|
|
|
|
#endif
|
2008-08-14 02:27:50 -04:00
|
|
|
#ifndef RUBY_ALIAS_FUNCTION
|
2009-01-19 03:24:10 -05:00
|
|
|
#define RUBY_ALIAS_FUNCTION(prot, name, args) \
|
2009-01-19 03:28:28 -05:00
|
|
|
RUBY_ALIAS_FUNCTION_TYPE(VALUE, prot, name, args)
|
2008-08-14 02:27:50 -04:00
|
|
|
#endif
|
|
|
|
|
2010-07-21 17:38:25 -04:00
|
|
|
#if defined __GNUC__ && __GNUC__ >= 4
|
|
|
|
#pragma GCC visibility pop
|
|
|
|
#endif
|
|
|
|
|
2007-06-09 23:06:15 -04:00
|
|
|
#if defined(__cplusplus)
|
|
|
|
#if 0
|
|
|
|
{ /* satisfy cc-mode */
|
|
|
|
#endif
|
|
|
|
} /* extern "C" { */
|
1998-01-16 07:13:05 -05:00
|
|
|
#endif
|
2007-06-09 23:06:15 -04:00
|
|
|
|
|
|
|
#endif /* RUBY_DEFINES_H */
|