Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 36e863b

Browse files
committed
Run autoheader to add a few missing #defines to pg_config.h.in.
These are emitted by the new ax_pthread.m4 script version. They are not used for anything in PostgreSQL, but let's keep the generated header file up-to-date. Andres Freund
1 parent c396f2b commit 36e863b

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

src/include/pg_config.h.in

+10
Original file line numberDiff line numberDiff line change
@@ -391,9 +391,15 @@
391391
/* Define to 1 if the PS_STRINGS thing exists. */
392392
#undef HAVE_PS_STRINGS
393393

394+
/* Define if you have POSIX threads libraries and header files. */
395+
#undef HAVE_PTHREAD
396+
394397
/* Define to 1 if you have the `pthread_is_threaded_np' function. */
395398
#undef HAVE_PTHREAD_IS_THREADED_NP
396399

400+
/* Have PTHREAD_PRIO_INHERIT. */
401+
#undef HAVE_PTHREAD_PRIO_INHERIT
402+
397403
/* Define to 1 if you have the <pwd.h> header file. */
398404
#undef HAVE_PWD_H
399405

@@ -746,6 +752,10 @@
746752
process. */
747753
#undef PROFILE_PID_DIR
748754

755+
/* Define to necessary symbol if this constant uses a non-standard name on
756+
your system. */
757+
#undef PTHREAD_CREATE_JOINABLE
758+
749759
/* RELSEG_SIZE is the maximum number of blocks allowed in one disk file. Thus,
750760
the maximum size of a single file is RELSEG_SIZE * BLCKSZ; relations bigger
751761
than that are divided into multiple files. RELSEG_SIZE * BLCKSZ must be

0 commit comments

Comments
 (0)