mirror of
https://github.com/DragonOS-Community/DragonOS.git
synced 2025-06-09 07:06:47 +00:00
10 lines
248 B
C
10 lines
248 B
C
#pragma once
|
|
|
|
#define likely(x) __builtin_expect(!!(x), 1)
|
|
#define unlikely(x) __builtin_expect(!!(x), 0)
|
|
|
|
#ifndef barrier
|
|
// 内存屏障
|
|
#define barrier() __asm__ __volatile__("" :: \
|
|
: "memory");
|
|
#endif |