xref: /haiku/headers/private/kernel/arch/atomic.h (revision d0f2d8282f3f59a1af7fe2d340d2af0cb36a9b20)
1 /*
2  * Copyright 2014, Paweł Dziepak, pdziepak@quarnos.org.
3  * Distributed under the terms of the MIT License.
4  */
5 #ifndef _KERNEL_ARCH_ATOMIC_H
6 #define _KERNEL_ARCH_ATOMIC_H
7 
8 
9 #include <SupportDefs.h>
10 
11 #include <KernelExport.h>
12 
13 
14 #ifdef __x86_64__
15 #	include <arch/x86/64/atomic.h>
16 #elif __INTEL__
17 #	include <arch/x86/32/atomic.h>
18 #endif
19 
20 
21 #endif	// _KERNEL_ARCH_ATOMIC_H
22 
23