1998-01-16 15:13:05 +03:00
|
|
|
/************************************************
|
|
|
|
|
|
|
|
defines.h -
|
|
|
|
|
|
|
|
$Author$
|
|
|
|
$Date$
|
|
|
|
created at: Wed May 18 00:21:44 JST 1994
|
|
|
|
|
|
|
|
************************************************/
|
|
|
|
#ifndef DEFINES_H
|
|
|
|
#define DEFINES_H
|
|
|
|
|
|
|
|
#define RUBY
|
|
|
|
|
2002-02-18 12:52:48 +03:00
|
|
|
#if !defined(__STDC__) && !defined(_MSC_VER)
|
|
|
|
# define volatile
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#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
|
|
|
|
|
|
|
|
#define xmalloc ruby_xmalloc
|
|
|
|
#define xcalloc ruby_xcalloc
|
|
|
|
#define xrealloc ruby_xrealloc
|
|
|
|
#define xfree ruby_xfree
|
|
|
|
|
|
|
|
void *xmalloc _((long));
|
|
|
|
void *xcalloc _((long,long));
|
|
|
|
void *xrealloc _((void*,long));
|
|
|
|
void xfree _((void*));
|
|
|
|
|
2001-05-02 08:22:21 +04:00
|
|
|
#if SIZEOF_LONG_LONG > 0
|
|
|
|
# define LONG_LONG long long
|
|
|
|
#elif SIZEOF___INT64 > 0
|
2002-03-14 09:23:46 +03:00
|
|
|
# define HAVE_LONG_LONG 1
|
2001-05-02 08:22:21 +04:00
|
|
|
# define LONG_LONG __int64
|
|
|
|
# undef SIZEOF_LONG_LONG
|
|
|
|
# define SIZEOF_LONG_LONG SIZEOF___INT64
|
|
|
|
#endif
|
|
|
|
|
2002-04-10 12: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
|
|
|
|
#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
|
2002-11-19 02:15:01 +03:00
|
|
|
#elif SIZEOF_SHORT*2 <= SIZEOF_LONG
|
2002-04-10 12:45:26 +04:00
|
|
|
# define BDIGIT unsigned short
|
|
|
|
# define SIZEOF_BDIGITS SIZEOF_SHORT
|
|
|
|
# define BDIGIT_DBL unsigned long
|
|
|
|
# define BDIGIT_DBL_SIGNED long
|
2002-11-19 02:15:01 +03:00
|
|
|
#else
|
|
|
|
# define BDIGIT unsigned short
|
|
|
|
# define SIZEOF_BDIGITS (SIZEOF_LONG/2)
|
|
|
|
# define BDIGIT_DBL unsigned long
|
|
|
|
# define BDIGIT_DBL_SIGNED long
|
2002-04-10 12:45:26 +04:00
|
|
|
#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-15 06:18:08 +03:00
|
|
|
#if defined(MSDOS) || defined(_WIN32) || defined(__human68k__) || defined(__EMX__)
|
|
|
|
#define DOSISH 1
|
|
|
|
#ifndef _WIN32_WCE
|
|
|
|
# define DOSISH_DRIVE_LETTER
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
/* define RUBY_USE_EUC/SJIS for default kanji-code */
|
1999-08-13 09:45:20 +04:00
|
|
|
#ifndef DEFAULT_KCODE
|
* 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-15 06:18:08 +03:00
|
|
|
#if defined(DOSISH) || defined(__CYGWIN__) || defined(__MACOS__) || defined(OS2)
|
1999-08-13 09:45:20 +04:00
|
|
|
#define DEFAULT_KCODE KCODE_SJIS
|
1998-01-16 15:13:05 +03:00
|
|
|
#else
|
1999-08-13 09:45:20 +04:00
|
|
|
#define DEFAULT_KCODE KCODE_EUC
|
|
|
|
#endif
|
1998-01-16 15:13:05 +03:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef NeXT
|
|
|
|
#define DYNAMIC_ENDIAN /* determine endian at runtime */
|
1999-01-20 07:59:39 +03:00
|
|
|
#ifndef __APPLE__
|
1998-01-16 15:13:05 +03:00
|
|
|
#define S_IXUSR _S_IXUSR /* execute/search permission, owner */
|
1999-01-20 07:59:39 +03:00
|
|
|
#endif
|
1998-01-16 15:13:05 +03:00
|
|
|
#define S_IXGRP 0000010 /* execute/search permission, group */
|
|
|
|
#define S_IXOTH 0000001 /* execute/search permission, other */
|
2000-07-27 13:49:34 +04:00
|
|
|
|
|
|
|
#define HAVE_SYS_WAIT_H /* configure fails to find this */
|
1998-01-16 15:13:05 +03:00
|
|
|
#endif /* NeXT */
|
|
|
|
|
* 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-15 06:18:08 +03:00
|
|
|
#ifdef __CYGWIN__
|
|
|
|
#undef _WIN32
|
|
|
|
#endif
|
|
|
|
#ifdef _WIN32
|
1999-08-13 09:45:20 +04:00
|
|
|
#include "win32/win32.h"
|
1998-01-16 15:13:05 +03:00
|
|
|
#endif
|
|
|
|
|
2002-03-22 10:26:42 +03:00
|
|
|
#if defined(__VMS)
|
|
|
|
#include "vms/vms.h"
|
|
|
|
#endif
|
|
|
|
|
2000-05-09 08:53:16 +04:00
|
|
|
#if defined __CYGWIN__
|
2000-05-13 20:13:31 +04:00
|
|
|
# undef EXTERN
|
2000-05-09 08:53:16 +04:00
|
|
|
# if defined USEIMPORTLIB
|
|
|
|
# define EXTERN extern __declspec(dllimport)
|
|
|
|
# else
|
|
|
|
# define EXTERN extern __declspec(dllexport)
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
#ifndef EXTERN
|
|
|
|
#define EXTERN extern
|
|
|
|
#endif
|
|
|
|
|
2003-01-04 21:48:24 +03:00
|
|
|
static inline void
|
|
|
|
flush_register_windows(void)
|
|
|
|
{
|
2003-01-16 10:38:40 +03:00
|
|
|
#if defined(sparc) || defined(__sparc__)
|
2003-01-04 21:48:24 +03:00
|
|
|
# if defined(__sparc_v9__) || defined(__arch64__)
|
|
|
|
asm volatile ("flushw" : :);
|
|
|
|
# elif defined(linux) || defined(__linux__)
|
|
|
|
asm volatile ("ta 0x83");
|
2002-12-31 13:28:52 +03:00
|
|
|
# else /* Solaris, OpenBSD, NetBSD, etc. */
|
2003-01-04 21:48:24 +03:00
|
|
|
asm volatile ("ta 0x03");
|
2002-01-04 17:15:33 +03:00
|
|
|
# endif /* trap always to flush register windows if we are on a Sparc system */
|
2003-01-16 10:38:40 +03:00
|
|
|
#endif
|
2003-01-04 21:48:24 +03:00
|
|
|
}
|
|
|
|
#define FLUSH_REGISTER_WINDOWS flush_register_windows()
|
1998-01-16 15:13:05 +03: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-15 06:18:08 +03:00
|
|
|
#if defined(DOSISH)
|
1999-08-13 09:45:20 +04:00
|
|
|
#define PATH_SEP ";"
|
2000-02-17 10:11:22 +03:00
|
|
|
#elif defined(riscos)
|
|
|
|
#define PATH_SEP ","
|
1999-01-20 07:59:39 +03:00
|
|
|
#else
|
1999-08-13 09:45:20 +04:00
|
|
|
#define PATH_SEP ":"
|
1999-01-20 07:59:39 +03:00
|
|
|
#endif
|
1999-08-13 09:45:20 +04:00
|
|
|
#define PATH_SEP_CHAR PATH_SEP[0]
|
1999-01-20 07:59:39 +03:00
|
|
|
|
2000-02-01 06:12:21 +03:00
|
|
|
#if defined(__human68k__)
|
1998-01-16 15:13:05 +03:00
|
|
|
#undef HAVE_RANDOM
|
|
|
|
#undef HAVE_SETITIMER
|
|
|
|
#endif
|
|
|
|
|
2001-05-28 20:07:34 +04:00
|
|
|
#if defined(DJGPP) || defined(__BOW__)
|
2000-02-01 06:12:21 +03:00
|
|
|
#undef HAVE_SETITIMER
|
|
|
|
#endif
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
#ifndef RUBY_PLATFORM
|
|
|
|
#define RUBY_PLATFORM "unknown-unknown"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|