]> granicus.if.org Git - postgresql/commit
Make fallback implementation of pg_memory_barrier() work.
authorTom Lane <tgl@sss.pgh.pa.us>
Sat, 17 May 2014 22:29:46 +0000 (18:29 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Sat, 17 May 2014 22:29:46 +0000 (18:29 -0400)
commit44cd47c1d49655c5dd9648bde8e267617c3735b4
treef45563d3452395c6c4a97157ee37fa5449147244
parentc1907f0cc49e38df9853b7547c9afce5204e4784
Make fallback implementation of pg_memory_barrier() work.

The fallback implementation involves acquiring and releasing a spinlock
variable that is otherwise unreferenced --- not even to the extent of
initializing it.  This accidentally fails to fail on platforms where
spinlocks should be initialized to zeroes, but elsewhere it results in
a "stuck spinlock" failure during startup.

I griped about this last July, and put in a hack that worked for gcc
on HPPA, but didn't get around to fixing the general case.  Per the
discussion back then, the best thing to do seems to be to initialize
dummy_spinlock in main.c.
src/backend/main/main.c