Chinaunix首页 | 论坛 | 博客
  • 博客访问: 519452
  • 博文数量: 184
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 1172
  • 用 户 组: 普通用户
  • 注册时间: 2016-06-21 13:40
个人简介

技术改变命运

文章分类

全部博文(184)

文章存档

2020年(16)

2017年(12)

2016年(156)

我的朋友

分类: LINUX

2016-07-31 14:28:19

Man page of test_and_set_bit(int nr, volatile void *addr)这样描述它的功能:

"Set a bit and return its old value"

 nr -- Bit to set

 addr -- Address to count from

注意:nr是需要设置的“哪一位”,而不是将addr的值设置成nr。

例如"test_and_set_bit(0, &var)","0" 不是要设置的值,而是表示var中第0位需要被设置为"1"。此函数返回相应比特位上一次被设置的值。
test_and_clear_bit()用法正好相反, which assigns "0" to the specified bit.

阅读(2042) | 评论(0) | 转发(0) |
0

上一篇:dwarf调试信息格式入门

下一篇:dwarf

给主人留下些什么吧!~~