Use 4-byte slock_t on both PPC and PPC64.

Tom Lane <tgl@sss.pgh.pa.us>

Commit: 8496c6cd77e2f5f105fc47315680174157d66647
Author: Tom Lane <tgl@sss.pgh.pa.us>
Date: 2012-01-02T05:02:01Z
Releases: 9.2.0
Use 4-byte slock_t on both PPC and PPC64.

Previously we defined slock_t as 8 bytes on PPC64, but the TAS assembly
code uses word-wide operations regardless, so that the second word was
just wasted space.  There doesn't appear to be any performance benefit
in adding the second word, so get rid of it to simplify the code.

Files

PathChange+/−
src/include/storage/s_lock.h modified +1 −4