Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 37672
b: refs/heads/master
c: c902e0a
h: refs/heads/master
v: v3
  • Loading branch information
Josh Triplett authored and Linus Torvalds committed Oct 1, 2006
1 parent f53a131 commit 4bfc50c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: df3fe8defedc52745526914e12eb4ba0b8a9f6ca
refs/heads/master: c902e0a0102f1095eec4b3511c13c84ca2bc4577
8 changes: 4 additions & 4 deletions trunk/include/linux/compiler.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@
# define __force __attribute__((force))
# define __nocast __attribute__((nocast))
# define __iomem __attribute__((noderef, address_space(2)))
# define __acquires(x) __attribute__((context(0,1)))
# define __releases(x) __attribute__((context(1,0)))
# define __acquire(x) __context__(1)
# define __release(x) __context__(-1)
# define __acquires(x) __attribute__((context(x,0,1)))
# define __releases(x) __attribute__((context(x,1,0)))
# define __acquire(x) __context__(x,1)
# define __release(x) __context__(x,-1)
# define __cond_lock(x,c) ((c) ? ({ __acquire(x); 1; }) : 0)
extern void __chk_user_ptr(void __user *);
extern void __chk_io_ptr(void __iomem *);
Expand Down

0 comments on commit 4bfc50c

Please sign in to comment.