Unmark gen_random_uuid() function leakproof.
[pgsql.git] / src / include / storage / spin.h
blob3ae2a56d073b6f70c37ad0b0f9e511c9aeaece41
1 /*-------------------------------------------------------------------------
3 * spin.h
4 * API for spinlocks.
7 * The interface to spinlocks is defined by the typedef "slock_t" and
8 * these macros:
10 * void SpinLockInit(volatile slock_t *lock)
11 * Initialize a spinlock (to the unlocked state).
13 * void SpinLockAcquire(volatile slock_t *lock)
14 * Acquire a spinlock, waiting if necessary.
15 * Time out and abort() if unable to acquire the lock in a
16 * "reasonable" amount of time --- typically ~ 1 minute.
18 * void SpinLockRelease(volatile slock_t *lock)
19 * Unlock a previously acquired lock.
21 * bool SpinLockFree(slock_t *lock)
22 * Tests if the lock is free. Returns true if free, false if locked.
23 * This does *not* change the state of the lock.
25 * Callers must beware that the macro argument may be evaluated multiple
26 * times!
28 * Load and store operations in calling code are guaranteed not to be
29 * reordered with respect to these operations, because they include a
30 * compiler barrier. (Before PostgreSQL 9.5, callers needed to use a
31 * volatile qualifier to access data protected by spinlocks.)
33 * Keep in mind the coding rule that spinlocks must not be held for more
34 * than a few instructions. In particular, we assume it is not possible
35 * for a CHECK_FOR_INTERRUPTS() to occur while holding a spinlock, and so
36 * it is not necessary to do HOLD/RESUME_INTERRUPTS() in these macros.
38 * These macros are implemented in terms of hardware-dependent macros
39 * supplied by s_lock.h. There is not currently any extra functionality
40 * added by this header, but there has been in the past and may someday
41 * be again.
44 * Portions Copyright (c) 1996-2024, PostgreSQL Global Development Group
45 * Portions Copyright (c) 1994, Regents of the University of California
47 * src/include/storage/spin.h
49 *-------------------------------------------------------------------------
51 #ifndef SPIN_H
52 #define SPIN_H
54 #include "storage/s_lock.h"
57 #define SpinLockInit(lock) S_INIT_LOCK(lock)
59 #define SpinLockAcquire(lock) S_LOCK(lock)
61 #define SpinLockRelease(lock) S_UNLOCK(lock)
63 #define SpinLockFree(lock) S_LOCK_FREE(lock)
65 #endif /* SPIN_H */