Unmark gen_random_uuid() function leakproof.
[pgsql.git] / src / include / storage / barrier.h
blob6bb1f665c8e141f744a6a0691ccbf1263e4d6bd7
1 /*-------------------------------------------------------------------------
3 * barrier.h
4 * Barriers for synchronizing cooperating processes.
6 * Portions Copyright (c) 1996-2024, PostgreSQL Global Development Group
7 * Portions Copyright (c) 1994, Regents of the University of California
9 * src/include/storage/barrier.h
11 *-------------------------------------------------------------------------
13 #ifndef BARRIER_H
14 #define BARRIER_H
17 * For the header previously known as "barrier.h", please include
18 * "port/atomics.h", which deals with atomics, compiler barriers and memory
19 * barriers.
22 #include "storage/condition_variable.h"
23 #include "storage/spin.h"
25 typedef struct Barrier
27 slock_t mutex;
28 int phase; /* phase counter */
29 int participants; /* the number of participants attached */
30 int arrived; /* the number of participants that have
31 * arrived */
32 int elected; /* highest phase elected */
33 bool static_party; /* used only for assertions */
34 ConditionVariable condition_variable;
35 } Barrier;
37 extern void BarrierInit(Barrier *barrier, int participants);
38 extern bool BarrierArriveAndWait(Barrier *barrier, uint32 wait_event_info);
39 extern bool BarrierArriveAndDetach(Barrier *barrier);
40 extern bool BarrierArriveAndDetachExceptLast(Barrier *barrier);
41 extern int BarrierAttach(Barrier *barrier);
42 extern bool BarrierDetach(Barrier *barrier);
43 extern int BarrierPhase(Barrier *barrier);
44 extern int BarrierParticipants(Barrier *barrier);
46 #endif /* BARRIER_H */