📄 atomic.h
字号:
/* * linux/include/asm-arm/atomic.h * * Copyright (c) 1996 Russell King. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. * * Changelog: * 27-06-1996 RMK Created * 13-04-1997 RMK Made functions atomic! * 07-12-1997 RMK Upgraded for v2.1. * 26-08-1998 PJB Added #ifdef __KERNEL__ */#ifndef __ASM_ARM_ATOMIC_H#define __ASM_ARM_ATOMIC_H#ifdef CONFIG_SMP#error SMP not supported#endiftypedef struct { volatile int counter; } atomic_t;#define ATOMIC_INIT(i) { (i) }#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -