diff options
Diffstat (limited to 'src/include/storage/spin.h')
-rw-r--r-- | src/include/storage/spin.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/include/storage/spin.h b/src/include/storage/spin.h index 0000af883b1..0ee24b5ab4b 100644 --- a/src/include/storage/spin.h +++ b/src/include/storage/spin.h @@ -1,21 +1,21 @@ /*------------------------------------------------------------------------- * * spin.h-- - * synchronization routines + * synchronization routines * * * Copyright (c) 1994, Regents of the University of California * - * $Id: spin.h,v 1.3 1997/08/19 21:40:03 momjian Exp $ + * $Id: spin.h,v 1.4 1997/09/07 05:01:39 momjian Exp $ * *------------------------------------------------------------------------- */ -#ifndef SPIN_H +#ifndef SPIN_H #define SPIN_H #include <storage/ipc.h> -/* +/* * two implementations of spin locks * * sequent, sparc, sun3: real spin locks. uses a TAS instruction; see @@ -25,11 +25,11 @@ * */ -typedef int SPINLOCK; +typedef int SPINLOCK; -extern bool CreateSpinlocks(IPCKey key); -extern bool InitSpinLocks(int init, IPCKey key); -extern void SpinAcquire(SPINLOCK lock); -extern void SpinRelease(SPINLOCK lock); +extern bool CreateSpinlocks(IPCKey key); +extern bool InitSpinLocks(int init, IPCKey key); +extern void SpinAcquire(SPINLOCK lock); +extern void SpinRelease(SPINLOCK lock); -#endif /* SPIN_H */ +#endif /* SPIN_H */ |