blob: 3991bc5506b108204a62d5f909e70a9ec37f12f1 [file] [log] [blame]
Tim Peters7d3a5112000-07-08 04:17:21 +00001#ifndef Py_PYPORT_H
Vladimir Marangozov14a4d882000-07-10 04:59:49 +00002#define Py_PYPORT_H
Tim Peters7d3a5112000-07-08 04:17:21 +00003
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00004#include "pyconfig.h" /* include for defines */
Peter Schneider-Kamp25f68942000-07-31 22:19:30 +00005
Thomas Wouters89f507f2006-12-13 04:49:30 +00006#ifdef HAVE_STDINT_H
7#include <stdint.h>
8#endif
9
Tim Peters7d3a5112000-07-08 04:17:21 +000010/**************************************************************************
11Symbols and macros to supply platform-independent interfaces to basic
Tim Peters1be46842000-07-23 18:10:18 +000012C language & library operations whose spellings vary across platforms.
Tim Peters7d3a5112000-07-08 04:17:21 +000013
14Please try to make documentation here as clear as possible: by definition,
15the stuff here is trying to illuminate C's darkest corners.
16
17Config #defines referenced here:
18
19SIGNED_RIGHT_SHIFT_ZERO_FILLS
20Meaning: To be defined iff i>>j does not extend the sign bit when i is a
21 signed integral type and i < 0.
22Used in: Py_ARITHMETIC_RIGHT_SHIFT
Tim Peters1be46842000-07-23 18:10:18 +000023
Tim Peters8315ea52000-07-23 19:28:35 +000024Py_DEBUG
25Meaning: Extra checks compiled in for debug mode.
26Used in: Py_SAFE_DOWNCAST
Barry Warsawfd847b22000-08-18 04:48:18 +000027
28HAVE_UINTPTR_T
29Meaning: The C9X type uintptr_t is supported by the compiler
30Used in: Py_uintptr_t
31
32HAVE_LONG_LONG
33Meaning: The compiler supports the C type "long long"
Martin v. Löwisb9a0f912003-03-29 10:06:18 +000034Used in: PY_LONG_LONG
Barry Warsawfd847b22000-08-18 04:48:18 +000035
Tim Peters7d3a5112000-07-08 04:17:21 +000036**************************************************************************/
37
Barry Warsawfd847b22000-08-18 04:48:18 +000038/* typedefs for some C9X-defined synonyms for integral types.
39 *
40 * The names in Python are exactly the same as the C9X names, except with a
41 * Py_ prefix. Until C9X is universally implemented, this is the only way
42 * to ensure that Python gets reliable names that don't conflict with names
43 * in non-Python code that are playing their own tricks to define the C9X
44 * names.
45 *
46 * NOTE: don't go nuts here! Python has no use for *most* of the C9X
47 * integral synonyms. Only define the ones we actually need.
48 */
49
50#ifdef HAVE_LONG_LONG
Martin v. Löwisb9a0f912003-03-29 10:06:18 +000051#ifndef PY_LONG_LONG
52#define PY_LONG_LONG long long
Guido van Rossumcd16bf62007-06-13 18:07:49 +000053#if defined(LLONG_MAX)
54/* If LLONG_MAX is defined in limits.h, use that. */
55#define PY_LLONG_MIN LLONG_MIN
56#define PY_LLONG_MAX LLONG_MAX
57#define PY_ULLONG_MAX ULLONG_MAX
58#elif defined(__LONG_LONG_MAX__)
59/* Otherwise, if GCC has a builtin define, use that. */
60#define PY_LLONG_MAX __LONG_LONG_MAX__
61#define PY_LLONG_MIN (-PY_LLONG_MAX-1)
62#define PY_ULLONG_MAX (__LONG_LONG_MAX__*2ULL + 1ULL)
63#else
64/* Otherwise, rely on two's complement. */
65#define PY_ULLONG_MAX (~0ULL)
66#define PY_LLONG_MAX ((long long)(PY_ULLONG_MAX>>1))
67#define PY_LLONG_MIN (-PY_LLONG_MAX-1)
68#endif /* LLONG_MAX */
Barry Warsawfd847b22000-08-18 04:48:18 +000069#endif
70#endif /* HAVE_LONG_LONG */
71
72/* uintptr_t is the C9X name for an unsigned integral type such that a
73 * legitimate void* can be cast to uintptr_t and then back to void* again
Tim Peters79248aa2001-08-29 21:37:10 +000074 * without loss of information. Similarly for intptr_t, wrt a signed
75 * integral type.
Barry Warsawfd847b22000-08-18 04:48:18 +000076 */
77#ifdef HAVE_UINTPTR_T
Tim Peters79248aa2001-08-29 21:37:10 +000078typedef uintptr_t Py_uintptr_t;
79typedef intptr_t Py_intptr_t;
80
Barry Warsawfd847b22000-08-18 04:48:18 +000081#elif SIZEOF_VOID_P <= SIZEOF_INT
Tim Peters79248aa2001-08-29 21:37:10 +000082typedef unsigned int Py_uintptr_t;
83typedef int Py_intptr_t;
84
Barry Warsawfd847b22000-08-18 04:48:18 +000085#elif SIZEOF_VOID_P <= SIZEOF_LONG
Tim Peters79248aa2001-08-29 21:37:10 +000086typedef unsigned long Py_uintptr_t;
87typedef long Py_intptr_t;
88
Barry Warsawfd847b22000-08-18 04:48:18 +000089#elif defined(HAVE_LONG_LONG) && (SIZEOF_VOID_P <= SIZEOF_LONG_LONG)
Martin v. Löwisb9a0f912003-03-29 10:06:18 +000090typedef unsigned PY_LONG_LONG Py_uintptr_t;
91typedef PY_LONG_LONG Py_intptr_t;
Tim Peters79248aa2001-08-29 21:37:10 +000092
Barry Warsawfd847b22000-08-18 04:48:18 +000093#else
94# error "Python needs a typedef for Py_uintptr_t in pyport.h."
95#endif /* HAVE_UINTPTR_T */
96
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000097/* Py_ssize_t is a signed integral type such that sizeof(Py_ssize_t) ==
98 * sizeof(size_t). C99 doesn't define such a thing directly (size_t is an
99 * unsigned integral type). See PEP 353 for details.
100 */
Martin v. Löwis18e16552006-02-15 17:27:45 +0000101#ifdef HAVE_SSIZE_T
102typedef ssize_t Py_ssize_t;
103#elif SIZEOF_VOID_P == SIZEOF_SIZE_T
Martin v. Löwis2d65b552006-02-18 18:26:55 +0000104typedef Py_intptr_t Py_ssize_t;
Martin v. Löwis18e16552006-02-15 17:27:45 +0000105#else
106# error "Python needs a typedef for Py_ssize_t in pyport.h."
107#endif
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000108
Amaury Forgeot d'Arc9c74b142008-06-18 00:47:36 +0000109/* Largest possible value of size_t.
110 SIZE_MAX is part of C99, so it might be defined on some
111 platforms. If it is not defined, (size_t)-1 is a portable
112 definition for C89, due to the way signed->unsigned
113 conversion is defined. */
114#ifdef SIZE_MAX
115#define PY_SIZE_MAX SIZE_MAX
116#else
117#define PY_SIZE_MAX ((size_t)-1)
118#endif
119
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000120/* Largest positive value of type Py_ssize_t. */
Martin v. Löwis18e16552006-02-15 17:27:45 +0000121#define PY_SSIZE_T_MAX ((Py_ssize_t)(((size_t)-1)>>1))
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000122/* Smallest negative value of type Py_ssize_t. */
123#define PY_SSIZE_T_MIN (-PY_SSIZE_T_MAX-1)
124
Christian Heimes400adb02008-02-01 08:12:03 +0000125#if SIZEOF_PID_T > SIZEOF_LONG
126# error "Python doesn't support sizeof(pid_t) > sizeof(long)"
127#endif
128
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000129/* PY_FORMAT_SIZE_T is a platform-specific modifier for use in a printf
130 * format to convert an argument with the width of a size_t or Py_ssize_t.
131 * C99 introduced "z" for this purpose, but not all platforms support that;
132 * e.g., MS compilers use "I" instead.
133 *
134 * These "high level" Python format functions interpret "z" correctly on
135 * all platforms (Python interprets the format string itself, and does whatever
136 * the platform C requires to convert a size_t/Py_ssize_t argument):
137 *
Christian Heimes72b710a2008-05-26 13:28:38 +0000138 * PyBytes_FromFormat
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000139 * PyErr_Format
Christian Heimes72b710a2008-05-26 13:28:38 +0000140 * PyBytes_FromFormatV
Walter Dörwald7696ed72007-05-31 15:51:35 +0000141 * PyUnicode_FromFormatV
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000142 *
143 * Lower-level uses require that you interpolate the correct format modifier
144 * yourself (e.g., calling printf, fprintf, sprintf, PyOS_snprintf); for
145 * example,
146 *
147 * Py_ssize_t index;
148 * fprintf(stderr, "index %" PY_FORMAT_SIZE_T "d sucks\n", index);
149 *
150 * That will expand to %ld, or %Id, or to something else correct for a
151 * Py_ssize_t on the platform.
152 */
153#ifndef PY_FORMAT_SIZE_T
Thomas Wouters89f507f2006-12-13 04:49:30 +0000154# if SIZEOF_SIZE_T == SIZEOF_INT && !defined(__APPLE__)
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000155# define PY_FORMAT_SIZE_T ""
156# elif SIZEOF_SIZE_T == SIZEOF_LONG
157# define PY_FORMAT_SIZE_T "l"
158# elif defined(MS_WINDOWS)
159# define PY_FORMAT_SIZE_T "I"
160# else
161# error "This platform's pyconfig.h needs to define PY_FORMAT_SIZE_T"
162# endif
163#endif
Martin v. Löwis18e16552006-02-15 17:27:45 +0000164
Thomas Wouters477c8d52006-05-27 19:21:47 +0000165/* Py_LOCAL can be used instead of static to get the fastest possible calling
166 * convention for functions that are local to a given module.
167 *
168 * Py_LOCAL_INLINE does the same thing, and also explicitly requests inlining,
169 * for platforms that support that.
170 *
171 * If PY_LOCAL_AGGRESSIVE is defined before python.h is included, more
172 * "aggressive" inlining/optimizaion is enabled for the entire module. This
173 * may lead to code bloat, and may slow things down for those reasons. It may
174 * also lead to errors, if the code relies on pointer aliasing. Use with
175 * care.
176 *
177 * NOTE: You can only use this for functions that are entirely local to a
178 * module; functions that are exported via method tables, callbacks, etc,
179 * should keep using static.
180 */
181
182#undef USE_INLINE /* XXX - set via configure? */
183
184#if defined(_MSC_VER)
185#if defined(PY_LOCAL_AGGRESSIVE)
186/* enable more aggressive optimization for visual studio */
187#pragma optimize("agtw", on)
188#endif
189/* ignore warnings if the compiler decides not to inline a function */
190#pragma warning(disable: 4710)
191/* fastest possible local call under MSVC */
192#define Py_LOCAL(type) static type __fastcall
193#define Py_LOCAL_INLINE(type) static __inline type __fastcall
194#elif defined(USE_INLINE)
195#define Py_LOCAL(type) static type
196#define Py_LOCAL_INLINE(type) static inline type
197#else
198#define Py_LOCAL(type) static type
199#define Py_LOCAL_INLINE(type) static type
200#endif
201
Thomas Wouters4d70c3d2006-06-08 14:42:34 +0000202/* Py_MEMCPY can be used instead of memcpy in cases where the copied blocks
203 * are often very short. While most platforms have highly optimized code for
204 * large transfers, the setup costs for memcpy are often quite high. MEMCPY
205 * solves this by doing short copies "in line".
206 */
207
208#if defined(_MSC_VER)
209#define Py_MEMCPY(target, source, length) do { \
210 size_t i_, n_ = (length); \
211 char *t_ = (void*) (target); \
212 const char *s_ = (void*) (source); \
213 if (n_ >= 16) \
214 memcpy(t_, s_, n_); \
215 else \
216 for (i_ = 0; i_ < n_; i_++) \
217 t_[i_] = s_[i_]; \
218 } while (0)
219#else
220#define Py_MEMCPY memcpy
221#endif
222
Peter Schneider-Kamp7e018902000-07-31 15:28:04 +0000223#include <stdlib.h>
Peter Schneider-Kamp7e018902000-07-31 15:28:04 +0000224
Vladimir Marangozov2c57e072000-08-11 11:48:33 +0000225#include <math.h> /* Moved here from the math section, before extern "C" */
226
227/********************************************
228 * WRAPPER FOR <time.h> and/or <sys/time.h> *
229 ********************************************/
230
231#ifdef TIME_WITH_SYS_TIME
232#include <sys/time.h>
233#include <time.h>
234#else /* !TIME_WITH_SYS_TIME */
235#ifdef HAVE_SYS_TIME_H
236#include <sys/time.h>
237#else /* !HAVE_SYS_TIME_H */
238#include <time.h>
239#endif /* !HAVE_SYS_TIME_H */
240#endif /* !TIME_WITH_SYS_TIME */
241
242
243/******************************
244 * WRAPPER FOR <sys/select.h> *
245 ******************************/
246
247/* NB caller must include <sys/types.h> */
248
249#ifdef HAVE_SYS_SELECT_H
Vladimir Marangozov2c57e072000-08-11 11:48:33 +0000250#include <sys/select.h>
Vladimir Marangozov2c57e072000-08-11 11:48:33 +0000251#endif /* !HAVE_SYS_SELECT_H */
252
Tim Peters60f42b52001-01-18 03:03:16 +0000253/*******************************
254 * stat() and fstat() fiddling *
255 *******************************/
256
257/* We expect that stat and fstat exist on most systems.
258 * It's confirmed on Unix, Mac and Windows.
259 * If you don't have them, add
260 * #define DONT_HAVE_STAT
261 * and/or
262 * #define DONT_HAVE_FSTAT
Tim Peters76f373d2001-07-26 21:34:59 +0000263 * to your pyconfig.h. Python code beyond this should check HAVE_STAT and
Tim Peters60f42b52001-01-18 03:03:16 +0000264 * HAVE_FSTAT instead.
265 * Also
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000266 * #define HAVE_SYS_STAT_H
267 * if <sys/stat.h> exists on your platform, and
Tim Peters60f42b52001-01-18 03:03:16 +0000268 * #define HAVE_STAT_H
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000269 * if <stat.h> does.
Tim Peters60f42b52001-01-18 03:03:16 +0000270 */
271#ifndef DONT_HAVE_STAT
272#define HAVE_STAT
273#endif
274
275#ifndef DONT_HAVE_FSTAT
276#define HAVE_FSTAT
277#endif
278
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000279#ifdef HAVE_SYS_STAT_H
Andrew MacIntyre5e090fc2002-02-26 11:20:01 +0000280#if defined(PYOS_OS2) && defined(PYCC_GCC)
281#include <sys/types.h>
282#endif
Tim Peters60f42b52001-01-18 03:03:16 +0000283#include <sys/stat.h>
284#elif defined(HAVE_STAT_H)
285#include <stat.h>
286#endif
287
Martin v. Löwisf9836ba2001-08-08 10:28:06 +0000288#if defined(PYCC_VACPP)
289/* VisualAge C/C++ Failed to Define MountType Field in sys/stat.h */
290#define S_IFMT (S_IFDIR|S_IFCHR|S_IFREG)
291#endif
292
293#ifndef S_ISREG
294#define S_ISREG(x) (((x) & S_IFMT) == S_IFREG)
295#endif
296
297#ifndef S_ISDIR
298#define S_ISDIR(x) (((x) & S_IFMT) == S_IFDIR)
299#endif
300
Vladimir Marangozov2c57e072000-08-11 11:48:33 +0000301
Tim Peters7d3a5112000-07-08 04:17:21 +0000302#ifdef __cplusplus
Peter Schneider-Kamp7e018902000-07-31 15:28:04 +0000303/* Move this down here since some C++ #include's don't like to be included
304 inside an extern "C" */
Tim Peters7d3a5112000-07-08 04:17:21 +0000305extern "C" {
306#endif
307
Vladimir Marangozov2c57e072000-08-11 11:48:33 +0000308
Tim Peters7d3a5112000-07-08 04:17:21 +0000309/* Py_ARITHMETIC_RIGHT_SHIFT
310 * C doesn't define whether a right-shift of a signed integer sign-extends
311 * or zero-fills. Here a macro to force sign extension:
312 * Py_ARITHMETIC_RIGHT_SHIFT(TYPE, I, J)
313 * Return I >> J, forcing sign extension.
314 * Requirements:
315 * I is of basic signed type TYPE (char, short, int, long, or long long).
316 * TYPE is one of char, short, int, long, or long long, although long long
317 * must not be used except on platforms that support it.
318 * J is an integer >= 0 and strictly less than the number of bits in TYPE
319 * (because C doesn't define what happens for J outside that range either).
320 * Caution:
321 * I may be evaluated more than once.
322 */
323#ifdef SIGNED_RIGHT_SHIFT_ZERO_FILLS
324#define Py_ARITHMETIC_RIGHT_SHIFT(TYPE, I, J) \
325 ((I) < 0 ? ~((~(unsigned TYPE)(I)) >> (J)) : (I) >> (J))
326#else
327#define Py_ARITHMETIC_RIGHT_SHIFT(TYPE, I, J) ((I) >> (J))
328#endif
329
Tim Peters39dce292000-08-15 03:34:48 +0000330/* Py_FORCE_EXPANSION(X)
Tim Peters1be46842000-07-23 18:10:18 +0000331 * "Simply" returns its argument. However, macro expansions within the
332 * argument are evaluated. This unfortunate trickery is needed to get
333 * token-pasting to work as desired in some cases.
334 */
335#define Py_FORCE_EXPANSION(X) X
336
Tim Peters8315ea52000-07-23 19:28:35 +0000337/* Py_SAFE_DOWNCAST(VALUE, WIDE, NARROW)
338 * Cast VALUE to type NARROW from type WIDE. In Py_DEBUG mode, this
339 * assert-fails if any information is lost.
340 * Caution:
341 * VALUE may be evaluated more than once.
342 */
343#ifdef Py_DEBUG
344#define Py_SAFE_DOWNCAST(VALUE, WIDE, NARROW) \
345 (assert((WIDE)(NARROW)(VALUE) == (VALUE)), (NARROW)(VALUE))
346#else
347#define Py_SAFE_DOWNCAST(VALUE, WIDE, NARROW) (NARROW)(VALUE)
348#endif
349
Hye-Shik Chang77d9a3e2004-03-22 08:43:55 +0000350/* Py_SET_ERRNO_ON_MATH_ERROR(x)
Tim Petersa40c7932001-09-05 22:36:56 +0000351 * If a libm function did not set errno, but it looks like the result
Hye-Shik Chang77d9a3e2004-03-22 08:43:55 +0000352 * overflowed or not-a-number, set errno to ERANGE or EDOM. Set errno
353 * to 0 before calling a libm function, and invoke this macro after,
354 * passing the function result.
Tim Petersa40c7932001-09-05 22:36:56 +0000355 * Caution:
356 * This isn't reliable. See Py_OVERFLOWED comments.
357 * X is evaluated more than once.
358 */
Guido van Rossum539c6622005-09-14 17:49:54 +0000359#if defined(__FreeBSD__) || defined(__OpenBSD__) || (defined(__hpux) && defined(__ia64))
Hye-Shik Chang77d9a3e2004-03-22 08:43:55 +0000360#define _Py_SET_EDOM_FOR_NAN(X) if (isnan(X)) errno = EDOM;
361#else
362#define _Py_SET_EDOM_FOR_NAN(X) ;
363#endif
364#define Py_SET_ERRNO_ON_MATH_ERROR(X) \
Tim Petersa40c7932001-09-05 22:36:56 +0000365 do { \
Hye-Shik Chang77d9a3e2004-03-22 08:43:55 +0000366 if (errno == 0) { \
367 if ((X) == Py_HUGE_VAL || (X) == -Py_HUGE_VAL) \
368 errno = ERANGE; \
369 else _Py_SET_EDOM_FOR_NAN(X) \
370 } \
Tim Petersa40c7932001-09-05 22:36:56 +0000371 } while(0)
Tim Peters57f282a2001-09-05 05:38:10 +0000372
Hye-Shik Chang77d9a3e2004-03-22 08:43:55 +0000373/* Py_SET_ERANGE_ON_OVERFLOW(x)
374 * An alias of Py_SET_ERRNO_ON_MATH_ERROR for backward-compatibility.
375 */
376#define Py_SET_ERANGE_IF_OVERFLOW(X) Py_SET_ERRNO_ON_MATH_ERROR(X)
377
Tim Petersdc5a5082002-03-09 04:58:24 +0000378/* Py_ADJUST_ERANGE1(x)
379 * Py_ADJUST_ERANGE2(x, y)
380 * Set errno to 0 before calling a libm function, and invoke one of these
381 * macros after, passing the function result(s) (Py_ADJUST_ERANGE2 is useful
382 * for functions returning complex results). This makes two kinds of
383 * adjustments to errno: (A) If it looks like the platform libm set
384 * errno=ERANGE due to underflow, clear errno. (B) If it looks like the
385 * platform libm overflowed but didn't set errno, force errno to ERANGE. In
386 * effect, we're trying to force a useful implementation of C89 errno
387 * behavior.
388 * Caution:
389 * This isn't reliable. See Py_OVERFLOWED comments.
390 * X and Y may be evaluated more than once.
391 */
392#define Py_ADJUST_ERANGE1(X) \
393 do { \
394 if (errno == 0) { \
395 if ((X) == Py_HUGE_VAL || (X) == -Py_HUGE_VAL) \
396 errno = ERANGE; \
397 } \
398 else if (errno == ERANGE && (X) == 0.0) \
399 errno = 0; \
400 } while(0)
401
402#define Py_ADJUST_ERANGE2(X, Y) \
403 do { \
404 if ((X) == Py_HUGE_VAL || (X) == -Py_HUGE_VAL || \
405 (Y) == Py_HUGE_VAL || (Y) == -Py_HUGE_VAL) { \
406 if (errno == 0) \
407 errno = ERANGE; \
408 } \
409 else if (errno == ERANGE) \
410 errno = 0; \
411 } while(0)
412
Neal Norwitz80292642002-12-19 15:12:26 +0000413/* Py_DEPRECATED(version)
Neal Norwitz93344ab2002-12-19 15:24:11 +0000414 * Declare a variable, type, or function deprecated.
Neal Norwitz80292642002-12-19 15:12:26 +0000415 * Usage:
416 * extern int old_var Py_DEPRECATED(2.3);
417 * typedef int T1 Py_DEPRECATED(2.4);
418 * extern int x() Py_DEPRECATED(2.5);
419 */
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000420#if defined(__GNUC__) && ((__GNUC__ >= 4) || \
421 (__GNUC__ == 3) && (__GNUC_MINOR__ >= 1))
Neal Norwitz80292642002-12-19 15:12:26 +0000422#define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
423#else
Tim Peters4643bd92002-12-28 21:56:08 +0000424#define Py_DEPRECATED(VERSION_UNUSED)
Neal Norwitz80292642002-12-19 15:12:26 +0000425#endif
426
Thomas Wouters1e0c2f42000-07-24 16:06:23 +0000427/**************************************************************************
428Prototypes that are missing from the standard include files on some systems
429(and possibly only some versions of such systems.)
430
431Please be conservative with adding new ones, document them and enclose them
432in platform-specific #ifdefs.
433**************************************************************************/
434
435#ifdef SOLARIS
436/* Unchecked */
437extern int gethostname(char *, int);
438#endif
439
Thomas Wouters1e0c2f42000-07-24 16:06:23 +0000440#ifdef HAVE__GETPTY
Sjoerd Mullender0765fe32000-07-26 15:46:29 +0000441#include <sys/types.h> /* we need to import mode_t */
Thomas Wouters1e0c2f42000-07-24 16:06:23 +0000442extern char * _getpty(int *, int, mode_t, int);
443#endif
444
Georg Brandlf78e02b2008-06-10 17:40:04 +0000445/* On QNX 6, struct termio must be declared by including sys/termio.h
446 if TCGETA, TCSETA, TCSETAW, or TCSETAF are used. sys/termio.h must
447 be included before termios.h or it will generate an error. */
448#ifdef HAVE_SYS_TERMIO_H
449#include <sys/termio.h>
450#endif
451
Thomas Wouters1e0c2f42000-07-24 16:06:23 +0000452#if defined(HAVE_OPENPTY) || defined(HAVE_FORKPTY)
453#if !defined(HAVE_PTY_H) && !defined(HAVE_LIBUTIL_H)
454/* BSDI does not supply a prototype for the 'openpty' and 'forkpty'
455 functions, even though they are included in libutil. */
456#include <termios.h>
457extern int openpty(int *, int *, char *, struct termios *, struct winsize *);
Christian Heimes400adb02008-02-01 08:12:03 +0000458extern pid_t forkpty(int *, char *, struct termios *, struct winsize *);
Thomas Wouters1e0c2f42000-07-24 16:06:23 +0000459#endif /* !defined(HAVE_PTY_H) && !defined(HAVE_LIBUTIL_H) */
460#endif /* defined(HAVE_OPENPTY) || defined(HAVE_FORKPTY) */
461
462
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000463/* On 4.4BSD-descendants, ctype functions serves the whole range of
464 * wchar_t character set rather than single byte code points only.
465 * This characteristic can break some operations of string object
466 * including str.upper() and str.split() on UTF-8 locales. This
467 * workaround was provided by Tim Robbins of FreeBSD project.
468 */
Hye-Shik Changb5047fd2004-08-04 06:33:51 +0000469
470#ifdef __FreeBSD__
471#include <osreldate.h>
472#if __FreeBSD_version > 500039
473#include <ctype.h>
474#include <wctype.h>
475#undef isalnum
476#define isalnum(c) iswalnum(btowc(c))
477#undef isalpha
478#define isalpha(c) iswalpha(btowc(c))
479#undef islower
480#define islower(c) iswlower(btowc(c))
481#undef isspace
482#define isspace(c) iswspace(btowc(c))
483#undef isupper
484#define isupper(c) iswupper(btowc(c))
485#undef tolower
486#define tolower(c) towlower(btowc(c))
487#undef toupper
488#define toupper(c) towupper(btowc(c))
489#endif
490#endif
491
492
Mark Hammond8235ea12002-07-19 06:55:41 +0000493/* Declarations for symbol visibility.
494
495 PyAPI_FUNC(type): Declares a public Python API function and return type
Tim Peters4643bd92002-12-28 21:56:08 +0000496 PyAPI_DATA(type): Declares public Python data and its type
Mark Hammond8235ea12002-07-19 06:55:41 +0000497 PyMODINIT_FUNC: A Python module init function. If these functions are
Tim Peters4643bd92002-12-28 21:56:08 +0000498 inside the Python core, they are private to the core.
499 If in an extension module, it may be declared with
Mark Hammond8235ea12002-07-19 06:55:41 +0000500 external linkage depending on the platform.
501
502 As a number of platforms support/require "__declspec(dllimport/dllexport)",
503 we support a HAVE_DECLSPEC_DLL macro to save duplication.
504*/
505
Tim Peters4643bd92002-12-28 21:56:08 +0000506/*
Michael W. Hudsonf163d102003-02-10 19:36:46 +0000507 All windows ports, except cygwin, are handled in PC/pyconfig.h.
508
Skip Montanaroeb33e5a2007-08-17 12:57:41 +0000509 Cygwin is the only other autoconf platform requiring special
510 linkage handling and it uses __declspec().
Mark Hammond8235ea12002-07-19 06:55:41 +0000511*/
Skip Montanaroeb33e5a2007-08-17 12:57:41 +0000512#if defined(__CYGWIN__)
Mark Hammond8235ea12002-07-19 06:55:41 +0000513# define HAVE_DECLSPEC_DLL
Peter Schneider-Kamp7e018902000-07-31 15:28:04 +0000514#endif
Mark Hammond8235ea12002-07-19 06:55:41 +0000515
Jason Tishler30765592003-09-04 11:04:06 +0000516/* only get special linkage if built as shared or platform is Cygwin */
517#if defined(Py_ENABLE_SHARED) || defined(__CYGWIN__)
Mark Hammond8235ea12002-07-19 06:55:41 +0000518# if defined(HAVE_DECLSPEC_DLL)
519# ifdef Py_BUILD_CORE
520# define PyAPI_FUNC(RTYPE) __declspec(dllexport) RTYPE
Mark Hammonda2905272002-07-29 13:42:14 +0000521# define PyAPI_DATA(RTYPE) extern __declspec(dllexport) RTYPE
Mark Hammond8235ea12002-07-19 06:55:41 +0000522 /* module init functions inside the core need no external linkage */
Skip Montanaroeb33e5a2007-08-17 12:57:41 +0000523 /* except for Cygwin to handle embedding */
Jason Tishler6bc06ec2003-09-04 11:59:50 +0000524# if defined(__CYGWIN__)
Martin v. Löwis1a214512008-06-11 05:26:20 +0000525# define PyMODINIT_FUNC __declspec(dllexport) PyObject*
Jason Tishler6bc06ec2003-09-04 11:59:50 +0000526# else /* __CYGWIN__ */
Martin v. Löwis1a214512008-06-11 05:26:20 +0000527# define PyMODINIT_FUNC PyObject*
Jason Tishler6bc06ec2003-09-04 11:59:50 +0000528# endif /* __CYGWIN__ */
Mark Hammond8235ea12002-07-19 06:55:41 +0000529# else /* Py_BUILD_CORE */
530 /* Building an extension module, or an embedded situation */
531 /* public Python functions and data are imported */
Jason Tishlerfb8595d2003-01-06 12:41:26 +0000532 /* Under Cygwin, auto-import functions to prevent compilation */
533 /* failures similar to http://python.org/doc/FAQ.html#3.24 */
534# if !defined(__CYGWIN__)
535# define PyAPI_FUNC(RTYPE) __declspec(dllimport) RTYPE
536# endif /* !__CYGWIN__ */
Mark Hammonda2905272002-07-29 13:42:14 +0000537# define PyAPI_DATA(RTYPE) extern __declspec(dllimport) RTYPE
Mark Hammond8235ea12002-07-19 06:55:41 +0000538 /* module init functions outside the core must be exported */
539# if defined(__cplusplus)
Martin v. Löwis1a214512008-06-11 05:26:20 +0000540# define PyMODINIT_FUNC extern "C" __declspec(dllexport) PyObject*
Mark Hammond8235ea12002-07-19 06:55:41 +0000541# else /* __cplusplus */
Martin v. Löwis1a214512008-06-11 05:26:20 +0000542# define PyMODINIT_FUNC __declspec(dllexport) PyObject*
Mark Hammond8235ea12002-07-19 06:55:41 +0000543# endif /* __cplusplus */
544# endif /* Py_BUILD_CORE */
545# endif /* HAVE_DECLSPEC */
546#endif /* Py_ENABLE_SHARED */
547
548/* If no external linkage macros defined by now, create defaults */
549#ifndef PyAPI_FUNC
550# define PyAPI_FUNC(RTYPE) RTYPE
551#endif
552#ifndef PyAPI_DATA
Mark Hammonda2905272002-07-29 13:42:14 +0000553# define PyAPI_DATA(RTYPE) extern RTYPE
Mark Hammond8235ea12002-07-19 06:55:41 +0000554#endif
555#ifndef PyMODINIT_FUNC
556# if defined(__cplusplus)
Martin v. Löwis1a214512008-06-11 05:26:20 +0000557# define PyMODINIT_FUNC extern "C" PyObject*
Mark Hammond8235ea12002-07-19 06:55:41 +0000558# else /* __cplusplus */
Martin v. Löwis1a214512008-06-11 05:26:20 +0000559# define PyMODINIT_FUNC PyObject*
Mark Hammond8235ea12002-07-19 06:55:41 +0000560# endif /* __cplusplus */
561#endif
562
Fred Draked5fadf72000-09-26 05:46:01 +0000563/* limits.h constants that may be missing */
564
565#ifndef INT_MAX
566#define INT_MAX 2147483647
567#endif
568
569#ifndef LONG_MAX
570#if SIZEOF_LONG == 4
571#define LONG_MAX 0X7FFFFFFFL
572#elif SIZEOF_LONG == 8
573#define LONG_MAX 0X7FFFFFFFFFFFFFFFL
574#else
575#error "could not set LONG_MAX in pyport.h"
576#endif
577#endif
578
579#ifndef LONG_MIN
580#define LONG_MIN (-LONG_MAX-1)
581#endif
582
Tim Petersd57731f2000-10-05 01:42:25 +0000583#ifndef LONG_BIT
584#define LONG_BIT (8 * SIZEOF_LONG)
585#endif
586
587#if LONG_BIT != 8 * SIZEOF_LONG
588/* 04-Oct-2000 LONG_BIT is apparently (mis)defined as 64 on some recent
589 * 32-bit platforms using gcc. We try to catch that here at compile-time
590 * rather than waiting for integer multiplication to trigger bogus
591 * overflows.
592 */
Andrew M. Kuchling234fb632001-01-12 15:06:28 +0000593#error "LONG_BIT definition appears wrong for platform (bad gcc/glibc config?)."
Tim Petersd57731f2000-10-05 01:42:25 +0000594#endif
595
Tim Peters7d3a5112000-07-08 04:17:21 +0000596#ifdef __cplusplus
597}
598#endif
599
Neil Schemenauer15691082001-10-23 02:20:37 +0000600/*
601 * Hide GCC attributes from compilers that don't support them.
602 */
Guido van Rossumbd67d6f2001-10-27 21:16:16 +0000603#if (!defined(__GNUC__) || __GNUC__ < 2 || \
Skip Montanaro7a98be22007-08-16 14:35:24 +0000604 (__GNUC__ == 2 && __GNUC_MINOR__ < 7) )
Neil Schemenauer96aa0ac2002-09-15 14:09:54 +0000605#define Py_GCC_ATTRIBUTE(x)
606#else
607#define Py_GCC_ATTRIBUTE(x) __attribute__(x)
Neil Schemenauer15691082001-10-23 02:20:37 +0000608#endif
609
Thomas Wouters89f507f2006-12-13 04:49:30 +0000610/*
611 * Add PyArg_ParseTuple format where available.
612 */
613#ifdef HAVE_ATTRIBUTE_FORMAT_PARSETUPLE
614#define Py_FORMAT_PARSETUPLE(func,p1,p2) __attribute__((format(func,p1,p2)))
615#else
616#define Py_FORMAT_PARSETUPLE(func,p1,p2)
617#endif
618
Nicholas Bastin9ba301e2004-07-15 15:54:05 +0000619/* Eliminate end-of-loop code not reached warnings from SunPro C
620 * when using do{...}while(0) macros
621 */
622#ifdef __SUNPRO_C
623#pragma error_messages (off,E_END_OF_LOOP_CODE_NOT_REACHED)
624#endif
625
Thomas Wouters477c8d52006-05-27 19:21:47 +0000626/*
627 * Older Microsoft compilers don't support the C99 long long literal suffixes,
628 * so these will be defined in PC/pyconfig.h for those compilers.
629 */
630#ifndef Py_LL
631#define Py_LL(x) x##LL
632#endif
633
634#ifndef Py_ULL
635#define Py_ULL(x) Py_LL(x##U)
636#endif
637
Tim Peters7d3a5112000-07-08 04:17:21 +0000638#endif /* Py_PYPORT_H */