1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-18 02:02:55 +03:00

More more of the include files under the include directory

This commit is contained in:
Marc G. Fournier
1997-04-12 10:21:55 +00:00
parent 9956fa056a
commit 7113e880b8
16 changed files with 210 additions and 0 deletions

14
src/include/port/linux.h Normal file
View File

@@ -0,0 +1,14 @@
/* __USE_POSIX, __USE_BSD, and __USE_BSD_SIGNAL used to be defined either
here or with -D compile options, but __ macros should be set and used by C
library macros, not Postgres code. __USE_POSIX is set by features.h,
__USE_BSD is set by bsd/signal.h, and __USE_BSD_SIGNAL appears not to
be used.
*/
# define JMP_BUF
# define USE_POSIX_TIME
# define USE_POSIX_SIGNALS
# if !defined(PPC)
# define NEED_I386_TAS_ASM
# define HAS_TEST_AND_SET
typedef unsigned char slock_t;
# endif