aboutsummaryrefslogtreecommitdiff
path: root/src/include/storage/spin.h
blob: 0ee24b5ab4b4e801e625732938faf02158af9833 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/*-------------------------------------------------------------------------
 *
 * spin.h--
 *	  synchronization routines
 *
 *
 * Copyright (c) 1994, Regents of the University of California
 *
 * $Id: spin.h,v 1.4 1997/09/07 05:01:39 momjian Exp $
 *
 *-------------------------------------------------------------------------
 */
#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
 * src/storage/ipc/s_lock.c for details.
 *
 * default: fake spin locks using semaphores.  see spin.c
 *
 */

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);

#endif							/* SPIN_H */