Commit 8fe8fc9d authored by Bruce Momjian's avatar Bruce Momjian

Fix alignment

parent 246b5398
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/include/storage/s_lock.h,v 1.81 2001/01/19 06:59:59 momjian Exp $ * $Header: /cvsroot/pgsql/src/include/storage/s_lock.h,v 1.82 2001/01/19 07:03:53 momjian Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -391,10 +391,11 @@ tas(volatile slock_t *lock) ...@@ -391,10 +391,11 @@ tas(volatile slock_t *lock)
*/ */
#define S_UNLOCK(lock) \ #define S_UNLOCK(lock) \
do { \ do { \
volatile slock_t *lock_ = (volatile slock_t *) (lock); \ volatile slock_t *lock_ = (volatile slock_t *) (lock); \
lock_->sema[0] = lock_->sema[1] = lock_->sema[2] = lock_->sema[3] = -1; \ lock_->sema[0] = lock_->sema[1] = \
} while (0) lock_->sema[2] = lock_->sema[3] = -1; \
} while (0)
#define S_LOCK_FREE(lock) ( *(int *) (((long) (lock) + 15) & ~15) != 0) #define S_LOCK_FREE(lock) ( *(int *) (((long) (lock) + 15) & ~15) != 0)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment