On Sat, Mar 13, 2021 at 3:47 PM Tom Lane <t...@sss.pgh.pa.us> wrote: > Checking the man pages, it seems that this ancient HPUX version > is using some pre-POSIX API spec in which pthread_cond_init takes a > pthread_condattr_t rather than a pointer to pthread_condattr_t. > Similarly for pthread_mutex_init.
Wow. > While it's likely that we could work around that, it's my > opinion that we shouldn't have to, because gaur is building with > --disable-thread-safety. If that switch has any meaning at all, > it should be that we don't try to use thread infrastructure. > Was any thought given to being able to opt out of this patchset > to support that configure option? Oops. The pgbench code was tested under --disable-thread-safety, but it didn't occur to me that the AC_REPLACE_FUNCS search for pthread_barrier_wait should also be conditional on that; I will now go and try to figure out how to do that.