]> granicus.if.org Git - postgresql/blob - src/include/c.h
Use _() macro consistently rather than gettext(). Add translation
[postgresql] / src / include / c.h
1 /*-------------------------------------------------------------------------
2  *
3  * c.h
4  *        Fundamental C definitions.  This is included by every .c file in
5  *        PostgreSQL (via either postgres.h or postgres_fe.h, as appropriate).
6  *
7  *        Note that the definitions here are not intended to be exposed to clients
8  *        of the frontend interface libraries --- so we don't worry much about
9  *        polluting the namespace with lots of stuff...
10  *
11  *
12  * Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group
13  * Portions Copyright (c) 1994, Regents of the University of California
14  *
15  * $PostgreSQL: pgsql/src/include/c.h,v 1.180 2005/02/22 04:41:51 momjian Exp $
16  *
17  *-------------------------------------------------------------------------
18  */
19 /*
20  *----------------------------------------------------------------
21  *       TABLE OF CONTENTS
22  *
23  *              When adding stuff to this file, please try to put stuff
24  *              into the relevant section, or add new sections as appropriate.
25  *
26  *        section       description
27  *        -------       ------------------------------------------------
28  *              0)              pg_config.h and standard system headers
29  *              1)              hacks to cope with non-ANSI C compilers
30  *              2)              bool, true, false, TRUE, FALSE, NULL
31  *              3)              standard system types
32  *              4)              IsValid macros for system types
33  *              5)              offsetof, lengthof, endof, alignment
34  *              6)              widely useful macros
35  *              7)              random stuff
36  *              8)              system-specific hacks
37  *
38  * NOTE: since this file is included by both frontend and backend modules, it's
39  * almost certainly wrong to put an "extern" declaration here.  typedefs and
40  * macros are the kind of thing that might go here.
41  *
42  *----------------------------------------------------------------
43  */
44 #ifndef C_H
45 #define C_H
46
47 /*
48  * We have to include stdlib.h here because it defines many of these macros
49  * on some platforms, and we only want our definitions used if stdlib.h doesn't
50  * have its own.  The same goes for stddef and stdarg if present.
51  */
52
53 #include "pg_config.h"
54 #include "pg_config_manual.h"   /* must be after pg_config.h */
55 #if !defined(WIN32) && !defined(__CYGWIN__)
56 #include "pg_config_os.h"               /* must be before any system header files */
57 #else
58 #if     defined(_MSC_VER) || defined(__BORLANDC__)
59 #define WIN32_CLIENT_ONLY
60 #endif
61 #endif
62 #include "postgres_ext.h"
63
64 #include <stdio.h>
65 #include <stdlib.h>
66 #include <string.h>
67 #include <stddef.h>
68 #include <stdarg.h>
69 #ifdef HAVE_STRINGS_H
70 #include <strings.h>
71 #endif
72 #include <sys/types.h>
73
74 #include <errno.h>
75 #if defined(WIN32) || defined(__CYGWIN__)
76 #include <fcntl.h>                              /* ensure O_BINARY is available */
77 #endif
78 #ifdef HAVE_SUPPORTDEFS_H
79 #include <SupportDefs.h>
80 #endif
81
82 #if defined(WIN32) || defined(__CYGWIN__)
83 #ifndef WIN32_CLIENT_ONLY
84 /* We have to redefine some system functions after they are included above */
85 #include "pg_config_os.h"
86 #else
87 #include "port/win32.h" /* We didn't run configure, but this is our port file */
88 #endif
89 #endif
90
91 /* Must be before gettext() games below */
92 #include <locale.h>
93
94 #define _(x) gettext((x))
95
96 #ifdef ENABLE_NLS
97 #include <libintl.h>
98 #else
99 #define gettext(x) (x)
100 #endif
101
102 /*
103  *      These strings are to be translation via xgettext.  We can't
104  *      call gettext() because it is located in variable initialization and
105  *      a function call can not be used.
106  */
107 #define gettext_noop(x) (x)
108
109
110 /* ----------------------------------------------------------------
111  *                              Section 1: hacks to cope with non-ANSI C compilers
112  *
113  * type prefixes (const, signed, volatile, inline) are handled in pg_config.h.
114  * ----------------------------------------------------------------
115  */
116
117 /*
118  * CppAsString
119  *              Convert the argument to a string, using the C preprocessor.
120  * CppConcat
121  *              Concatenate two arguments together, using the C preprocessor.
122  *
123  * Note: the standard Autoconf macro AC_C_STRINGIZE actually only checks
124  * whether #identifier works, but if we have that we likely have ## too.
125  */
126 #if defined(HAVE_STRINGIZE)
127
128 #define CppAsString(identifier) #identifier
129 #define CppConcat(x, y)                 x##y
130
131 #else                                                   /* !HAVE_STRINGIZE */
132
133 #define CppAsString(identifier) "identifier"
134
135 /*
136  * CppIdentity -- On Reiser based cpp's this is used to concatenate
137  *              two tokens.  That is
138  *                              CppIdentity(A)B ==> AB
139  *              We renamed it to _private_CppIdentity because it should not
140  *              be referenced outside this file.  On other cpp's it
141  *              produces  A  B.
142  */
143 #define _priv_CppIdentity(x)x
144 #define CppConcat(x, y)                 _priv_CppIdentity(x)y
145 #endif   /* !HAVE_STRINGIZE */
146
147 /*
148  * dummyret is used to set return values in macros that use ?: to make
149  * assignments.  gcc wants these to be void, other compilers like char
150  */
151 #ifdef __GNUC__                                 /* GNU cc */
152 #define dummyret        void
153 #else
154 #define dummyret        char
155 #endif
156
157 #ifndef __GNUC__
158 #define __attribute__(_arg_)
159 #endif
160
161 /* ----------------------------------------------------------------
162  *                              Section 2:      bool, true, false, TRUE, FALSE, NULL
163  * ----------------------------------------------------------------
164  */
165
166 /*
167  * bool
168  *              Boolean value, either true or false.
169  *
170  * XXX for C++ compilers, we assume the compiler has a compatible
171  * built-in definition of bool.
172  */
173
174 /* BeOS defines bool already, but the compiler chokes on the
175  * #ifndef unless we wrap it in this check.
176  */
177 #ifndef __BEOS__
178
179 #ifndef __cplusplus
180
181 #ifndef bool
182 typedef char bool;
183 #endif
184
185 #ifndef true
186 #define true    ((bool) 1)
187 #endif
188
189 #ifndef false
190 #define false   ((bool) 0)
191 #endif
192 #endif   /* not C++ */
193 #endif   /* __BEOS__ */
194
195 typedef bool *BoolPtr;
196
197 #ifndef TRUE
198 #define TRUE    1
199 #endif
200
201 #ifndef FALSE
202 #define FALSE   0
203 #endif
204
205 /*
206  * NULL
207  *              Null pointer.
208  */
209 #ifndef NULL
210 #define NULL    ((void *) 0)
211 #endif
212
213
214 /* ----------------------------------------------------------------
215  *                              Section 3:      standard system types
216  * ----------------------------------------------------------------
217  */
218
219 /*
220  * Pointer
221  *              Variable holding address of any memory resident object.
222  *
223  *              XXX Pointer arithmetic is done with this, so it can't be void *
224  *              under "true" ANSI compilers.
225  */
226 typedef char *Pointer;
227
228 /*
229  * intN
230  *              Signed integer, EXACTLY N BITS IN SIZE,
231  *              used for numerical computations and the
232  *              frontend/backend protocol.
233  */
234 #ifndef HAVE_INT8
235 typedef signed char int8;               /* == 8 bits */
236 typedef signed short int16;             /* == 16 bits */
237 typedef signed int int32;               /* == 32 bits */
238 #endif   /* not HAVE_INT8 */
239
240 /*
241  * uintN
242  *              Unsigned integer, EXACTLY N BITS IN SIZE,
243  *              used for numerical computations and the
244  *              frontend/backend protocol.
245  */
246 #ifndef HAVE_UINT8
247 typedef unsigned char uint8;    /* == 8 bits */
248 typedef unsigned short uint16;  /* == 16 bits */
249 typedef unsigned int uint32;    /* == 32 bits */
250 #endif   /* not HAVE_UINT8 */
251
252 /*
253  * bitsN
254  *              Unit of bitwise operation, AT LEAST N BITS IN SIZE.
255  */
256 typedef uint8 bits8;                    /* >= 8 bits */
257 typedef uint16 bits16;                  /* >= 16 bits */
258 typedef uint32 bits32;                  /* >= 32 bits */
259
260 /*
261  * floatN
262  *              Floating point number, AT LEAST N BITS IN SIZE,
263  *              used for numerical computations.
264  *
265  *              Since sizeof(floatN) may be > sizeof(char *), always pass
266  *              floatN by reference.
267  *
268  * XXX: these typedefs are now deprecated in favor of float4 and float8.
269  * They will eventually go away.
270  */
271 typedef float float32data;
272 typedef double float64data;
273 typedef float *float32;
274 typedef double *float64;
275
276 /*
277  * 64-bit integers
278  */
279 #ifdef HAVE_LONG_INT_64
280 /* Plain "long int" fits, use it */
281
282 #ifndef HAVE_INT64
283 typedef long int int64;
284 #endif
285 #ifndef HAVE_UINT64
286 typedef unsigned long int uint64;
287 #endif
288
289 #elif defined(HAVE_LONG_LONG_INT_64)
290 /* We have working support for "long long int", use that */
291
292 #ifndef HAVE_INT64
293 typedef long long int int64;
294 #endif
295 #ifndef HAVE_UINT64
296 typedef unsigned long long int uint64;
297 #endif
298
299 #else                                                   /* not HAVE_LONG_INT_64 and not
300                                                                  * HAVE_LONG_LONG_INT_64 */
301
302 /* Won't actually work, but fall back to long int so that code compiles */
303 #ifndef HAVE_INT64
304 typedef long int int64;
305 #endif
306 #ifndef HAVE_UINT64
307 typedef unsigned long int uint64;
308 #endif
309
310 #define INT64_IS_BUSTED
311 #endif   /* not HAVE_LONG_INT_64 and not
312                                                                  * HAVE_LONG_LONG_INT_64 */
313
314 /* Decide if we need to decorate 64-bit constants */
315 #ifdef HAVE_LL_CONSTANTS
316 #define INT64CONST(x)  ((int64) x##LL)
317 #define UINT64CONST(x) ((uint64) x##ULL)
318 #else
319 #define INT64CONST(x)  ((int64) x)
320 #define UINT64CONST(x) ((uint64) x)
321 #endif
322
323
324 /* Select timestamp representation (float8 or int64) */
325 #if defined(USE_INTEGER_DATETIMES) && !defined(INT64_IS_BUSTED)
326 #define HAVE_INT64_TIMESTAMP
327 #endif
328
329 /* sig_atomic_t is required by ANSI C, but may be missing on old platforms */
330 #ifndef HAVE_SIG_ATOMIC_T
331 typedef int sig_atomic_t;
332 #endif
333
334 /*
335  * Size
336  *              Size of any memory resident object, as returned by sizeof.
337  */
338 typedef size_t Size;
339
340 /*
341  * Index
342  *              Index into any memory resident array.
343  *
344  * Note:
345  *              Indices are non negative.
346  */
347 typedef unsigned int Index;
348
349 /*
350  * Offset
351  *              Offset into any memory resident array.
352  *
353  * Note:
354  *              This differs from an Index in that an Index is always
355  *              non negative, whereas Offset may be negative.
356  */
357 typedef signed int Offset;
358
359 /*
360  * Common Postgres datatype names (as used in the catalogs)
361  */
362 typedef int16 int2;
363 typedef int32 int4;
364 typedef float float4;
365 typedef double float8;
366
367 /*
368  * Oid, RegProcedure, TransactionId, SubTransactionId, CommandId, AclId
369  */
370
371 /* typedef Oid is in postgres_ext.h */
372
373 /*
374  * regproc is the type name used in the include/catalog headers, but
375  * RegProcedure is the preferred name in C code.
376  */
377 typedef Oid regproc;
378 typedef regproc RegProcedure;
379
380 typedef uint32 TransactionId;
381
382 typedef uint32 SubTransactionId;
383
384 #define InvalidSubTransactionId         ((SubTransactionId) 0)
385 #define TopSubTransactionId                     ((SubTransactionId) 1)
386
387 typedef uint32 CommandId;
388
389 #define FirstCommandId  ((CommandId) 0)
390
391 typedef int32 AclId;                    /* user and group identifiers */
392
393 /*
394  * Array indexing support
395  */
396 #define MAXDIM 6
397 typedef struct
398 {
399         int                     indx[MAXDIM];
400 } IntArray;
401
402 /* ----------------
403  *              Variable-length datatypes all share the 'struct varlena' header.
404  *
405  * NOTE: for TOASTable types, this is an oversimplification, since the value
406  * may be compressed or moved out-of-line.      However datatype-specific routines
407  * are mostly content to deal with de-TOASTed values only, and of course
408  * client-side routines should never see a TOASTed value.  See postgres.h for
409  * details of the TOASTed form.
410  * ----------------
411  */
412 struct varlena
413 {
414         int32           vl_len;
415         char            vl_dat[1];
416 };
417
418 #define VARHDRSZ                ((int32) sizeof(int32))
419
420 /*
421  * These widely-used datatypes are just a varlena header and the data bytes.
422  * There is no terminating null or anything like that --- the data length is
423  * always VARSIZE(ptr) - VARHDRSZ.
424  */
425 typedef struct varlena bytea;
426 typedef struct varlena text;
427 typedef struct varlena BpChar;  /* blank-padded char, ie SQL char(n) */
428 typedef struct varlena VarChar; /* var-length char, ie SQL varchar(n) */
429
430 /*
431  * Fixed-length array types (these are not varlena's!)
432  */
433
434 typedef int2 int2vector[INDEX_MAX_KEYS];
435 typedef Oid oidvector[INDEX_MAX_KEYS];
436
437 /*
438  * We want NameData to have length NAMEDATALEN and int alignment,
439  * because that's how the data type 'name' is defined in pg_type.
440  * Use a union to make sure the compiler agrees.  Note that NAMEDATALEN
441  * must be a multiple of sizeof(int), else sizeof(NameData) will probably
442  * not come out equal to NAMEDATALEN.
443  */
444 typedef union nameData
445 {
446         char            data[NAMEDATALEN];
447         int                     alignmentDummy;
448 } NameData;
449 typedef NameData *Name;
450
451 #define NameStr(name)   ((name).data)
452
453
454 /* ----------------------------------------------------------------
455  *                              Section 4:      IsValid macros for system types
456  * ----------------------------------------------------------------
457  */
458 /*
459  * BoolIsValid
460  *              True iff bool is valid.
461  */
462 #define BoolIsValid(boolean)    ((boolean) == false || (boolean) == true)
463
464 /*
465  * PointerIsValid
466  *              True iff pointer is valid.
467  */
468 #define PointerIsValid(pointer) ((void*)(pointer) != NULL)
469
470 /*
471  * PointerIsAligned
472  *              True iff pointer is properly aligned to point to the given type.
473  */
474 #define PointerIsAligned(pointer, type) \
475                 (((long)(pointer) % (sizeof (type))) == 0)
476
477 #define OidIsValid(objectId)  ((bool) ((objectId) != InvalidOid))
478
479 #define AclIdIsValid(aclId)  ((bool) ((aclId) != 0))
480
481 #define RegProcedureIsValid(p)  OidIsValid(p)
482
483
484 /* ----------------------------------------------------------------
485  *                              Section 5:      offsetof, lengthof, endof, alignment
486  * ----------------------------------------------------------------
487  */
488 /*
489  * offsetof
490  *              Offset of a structure/union field within that structure/union.
491  *
492  *              XXX This is supposed to be part of stddef.h, but isn't on
493  *              some systems (like SunOS 4).
494  */
495 #ifndef offsetof
496 #define offsetof(type, field)   ((long) &((type *)0)->field)
497 #endif   /* offsetof */
498
499 /*
500  * lengthof
501  *              Number of elements in an array.
502  */
503 #define lengthof(array) (sizeof (array) / sizeof ((array)[0]))
504
505 /*
506  * endof
507  *              Address of the element one past the last in an array.
508  */
509 #define endof(array)    (&array[lengthof(array)])
510
511 /* ----------------
512  * Alignment macros: align a length or address appropriately for a given type.
513  *
514  * There used to be some incredibly crufty platform-dependent hackery here,
515  * but now we rely on the configure script to get the info for us. Much nicer.
516  *
517  * NOTE: TYPEALIGN will not work if ALIGNVAL is not a power of 2.
518  * That case seems extremely unlikely to occur in practice, however.
519  * ----------------
520  */
521
522 #define TYPEALIGN(ALIGNVAL,LEN)  \
523         (((long) (LEN) + (ALIGNVAL-1)) & ~((long) (ALIGNVAL-1)))
524
525 #define SHORTALIGN(LEN)                 TYPEALIGN(ALIGNOF_SHORT, (LEN))
526 #define INTALIGN(LEN)                   TYPEALIGN(ALIGNOF_INT, (LEN))
527 #define LONGALIGN(LEN)                  TYPEALIGN(ALIGNOF_LONG, (LEN))
528 #define DOUBLEALIGN(LEN)                TYPEALIGN(ALIGNOF_DOUBLE, (LEN))
529 #define MAXALIGN(LEN)                   TYPEALIGN(MAXIMUM_ALIGNOF, (LEN))
530 /* MAXALIGN covers only built-in types, not buffers */
531 #define BUFFERALIGN(LEN)                TYPEALIGN(ALIGNOF_BUFFER, (LEN))
532
533
534 /* ----------------------------------------------------------------
535  *                              Section 6:      widely useful macros
536  * ----------------------------------------------------------------
537  */
538 /*
539  * Max
540  *              Return the maximum of two numbers.
541  */
542 #define Max(x, y)               ((x) > (y) ? (x) : (y))
543
544 /*
545  * Min
546  *              Return the minimum of two numbers.
547  */
548 #define Min(x, y)               ((x) < (y) ? (x) : (y))
549
550 /*
551  * Abs
552  *              Return the absolute value of the argument.
553  */
554 #define Abs(x)                  ((x) >= 0 ? (x) : -(x))
555
556 /*
557  * StrNCpy
558  *      Like standard library function strncpy(), except that result string
559  *      is guaranteed to be null-terminated --- that is, at most N-1 bytes
560  *      of the source string will be kept.
561  *      Also, the macro returns no result (too hard to do that without
562  *      evaluating the arguments multiple times, which seems worse).
563  *
564  *      BTW: when you need to copy a non-null-terminated string (like a text
565  *      datum) and add a null, do not do it with StrNCpy(..., len+1).  That
566  *      might seem to work, but it fetches one byte more than there is in the
567  *      text object.  One fine day you'll have a SIGSEGV because there isn't
568  *      another byte before the end of memory.  Don't laugh, we've had real
569  *      live bug reports from real live users over exactly this mistake.
570  *      Do it honestly with "memcpy(dst,src,len); dst[len] = '\0';", instead.
571  */
572 #define StrNCpy(dst,src,len) \
573         do \
574         { \
575                 char * _dst = (dst); \
576                 Size _len = (len); \
577 \
578                 if (_len > 0) \
579                 { \
580                         strncpy(_dst, (src), _len); \
581                         _dst[_len-1] = '\0'; \
582                 } \
583         } while (0)
584
585
586 /* Get a bit mask of the bits set in non-int32 aligned addresses */
587 #define INT_ALIGN_MASK (sizeof(int32) - 1)
588
589 /*
590  * MemSet
591  *      Exactly the same as standard library function memset(), but considerably
592  *      faster for zeroing small word-aligned structures (such as parsetree nodes).
593  *      This has to be a macro because the main point is to avoid function-call
594  *      overhead.       However, we have also found that the loop is faster than
595  *      native libc memset() on some platforms, even those with assembler
596  *      memset() functions.  More research needs to be done, perhaps with
597  *      platform-specific MEMSET_LOOP_LIMIT values or tests in configure.
598  *
599  *      bjm 2002-10-08
600  */
601 #define MemSet(start, val, len) \
602         do \
603         { \
604                 int32 * _start = (int32 *) (start); \
605                 int             _val = (val); \
606                 Size    _len = (len); \
607 \
608                 if ((((long) _start) & INT_ALIGN_MASK) == 0 && \
609                         (_len & INT_ALIGN_MASK) == 0 && \
610                         _val == 0 && \
611                         _len <= MEMSET_LOOP_LIMIT) \
612                 { \
613                         int32 * _stop = (int32 *) ((char *) _start + _len); \
614                         while (_start < _stop) \
615                                 *_start++ = 0; \
616                 } \
617                 else \
618                         memset((char *) _start, _val, _len); \
619         } while (0)
620
621 #define MEMSET_LOOP_LIMIT  1024
622
623 /*
624  * MemSetAligned is the same as MemSet except it omits the test to see if
625  * "start" is word-aligned.  This is okay to use if the caller knows a-priori
626  * that the pointer is suitably aligned (typically, because he just got it
627  * from palloc(), which always delivers a max-aligned pointer).
628  */
629 #define MemSetAligned(start, val, len) \
630         do \
631         { \
632                 int32 * _start = (int32 *) (start); \
633                 int             _val = (val); \
634                 Size    _len = (len); \
635 \
636                 if ((_len & INT_ALIGN_MASK) == 0 && \
637                         _val == 0 && \
638                         _len <= MEMSET_LOOP_LIMIT) \
639                 { \
640                         int32 * _stop = (int32 *) ((char *) _start + _len); \
641                         while (_start < _stop) \
642                                 *_start++ = 0; \
643                 } \
644                 else \
645                         memset((char *) _start, _val, _len); \
646         } while (0)
647
648
649 /*
650  * MemSetTest/MemSetLoop are a variant version that allow all the tests in
651  * MemSet to be done at compile time in cases where "val" and "len" are
652  * constants *and* we know the "start" pointer must be word-aligned.
653  * If MemSetTest succeeds, then it is okay to use MemSetLoop, otherwise use
654  * MemSetAligned.  Beware of multiple evaluations of the arguments when using
655  * this approach.
656  */
657 #define MemSetTest(val, len) \
658         ( ((len) & INT_ALIGN_MASK) == 0 && \
659         (len) <= MEMSET_LOOP_LIMIT && \
660         (val) == 0 )
661
662 #define MemSetLoop(start, val, len) \
663         do \
664         { \
665                 int32 * _start = (int32 *) (start); \
666                 int32 * _stop = (int32 *) ((char *) _start + (Size) (len)); \
667         \
668                 while (_start < _stop) \
669                         *_start++ = 0; \
670         } while (0)
671
672
673 /* ----------------------------------------------------------------
674  *                              Section 7:      random stuff
675  * ----------------------------------------------------------------
676  */
677
678 /* msb for char */
679 #define CSIGNBIT (0x80)
680
681 #define STATUS_OK                               (0)
682 #define STATUS_ERROR                    (-1)
683 #define STATUS_EOF                              (-2)
684 #define STATUS_FOUND                    (1)
685
686
687 /* ----------------------------------------------------------------
688  *                              Section 8: system-specific hacks
689  *
690  *              This should be limited to things that absolutely have to be
691  *              included in every source file.  The port-specific header file
692  *              is usually a better place for this sort of thing.
693  * ----------------------------------------------------------------
694  */
695
696 /*
697  *      NOTE:  this is also used for opening text files.
698  *      WIN32 treats Control-Z as EOF in files opened in text mode.
699  *      Therefore, we open files in binary mode on Win32 so we can read
700  *      literal control-Z.      The other affect is that we see CRLF, but
701  *      that is OK because we can already handle those cleanly.
702  */
703 #if defined(WIN32) || defined(__CYGWIN__)
704 #define PG_BINARY       O_BINARY
705 #define PG_BINARY_R "rb"
706 #define PG_BINARY_W "wb"
707 #else
708 #define PG_BINARY       0
709 #define PG_BINARY_R "r"
710 #define PG_BINARY_W "w"
711 #endif
712
713 #if defined(sun) && defined(__sparc__) && !defined(__SVR4)
714 #include <unistd.h>
715 #endif
716
717 /* These are for things that are one way on Unix and another on NT */
718 #define NULL_DEV                "/dev/null"
719
720 /*
721  * Provide prototypes for routines not present in a particular machine's
722  * standard C library.
723  */
724
725 #if !HAVE_DECL_SNPRINTF
726 extern int
727 snprintf(char *str, size_t count, const char *fmt,...)
728 /* This extension allows gcc to check the format string */
729 __attribute__((format(printf, 3, 4)));
730 #endif
731
732 #if !HAVE_DECL_VSNPRINTF
733 extern int      vsnprintf(char *str, size_t count, const char *fmt, va_list args);
734 #endif
735
736 #if !defined(HAVE_MEMMOVE) && !defined(memmove)
737 #define memmove(d, s, c)                bcopy(s, d, c)
738 #endif
739
740 #ifndef DLLIMPORT
741 #define DLLIMPORT                               /* no special DLL markers on most ports */
742 #endif
743
744 /*
745  * The following is used as the arg list for signal handlers.  Any ports
746  * that take something other than an int argument should override this in
747  * their pg_config_os.h file.  Note that variable names are required
748  * because it is used in both the prototypes as well as the definitions.
749  * Note also the long name.  We expect that this won't collide with
750  * other names causing compiler warnings.
751  */
752
753 #ifndef SIGNAL_ARGS
754 #define SIGNAL_ARGS  int postgres_signal_arg
755 #endif
756
757 /*
758  * When there is no sigsetjmp, its functionality is provided by plain
759  * setjmp. Incidentally, nothing provides setjmp's functionality in
760  * that case.
761  */
762 #ifndef HAVE_SIGSETJMP
763 #define sigjmp_buf jmp_buf
764 #define sigsetjmp(x,y) setjmp(x)
765 #define siglongjmp longjmp
766 #endif
767
768 #if defined(HAVE_FDATASYNC) && !HAVE_DECL_FDATASYNC
769 extern int      fdatasync(int fildes);
770 #endif
771
772 /* If strtoq() exists, rename it to the more standard strtoll() */
773 #if defined(HAVE_LONG_LONG_INT_64) && !defined(HAVE_STRTOLL) && defined(HAVE_STRTOQ)
774 #define strtoll strtoq
775 #define HAVE_STRTOLL 1
776 #endif
777
778 /* If strtouq() exists, rename it to the more standard strtoull() */
779 #if defined(HAVE_LONG_LONG_INT_64) && !defined(HAVE_STRTOULL) && defined(HAVE_STRTOUQ)
780 #define strtoull strtouq
781 #define HAVE_STRTOULL 1
782 #endif
783
784 /* EXEC_BACKEND defines */
785 #ifdef EXEC_BACKEND
786 #define NON_EXEC_STATIC
787 #else
788 #define NON_EXEC_STATIC static
789 #endif
790
791 /* /port compatibility functions */
792 #include "port.h"
793
794 #endif   /* C_H */