blob: 6202e57608026ef8f05f60f88cc2edaf392341aa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/*-------------------------------------------------------------------------
*
* barrier.h
* Memory barrier operations.
*
* Portions Copyright (c) 1996-2016, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* src/include/storage/barrier.h
*
*-------------------------------------------------------------------------
*/
#ifndef BARRIER_H
#define BARRIER_H
/*
* This used to be a separate file, full of compiler/architecture
* dependent defines, but it's not included in the atomics.h
* infrastructure and just kept for backward compatibility.
*/
#include "port/atomics.h"
#endif /* BARRIER_H */
|