Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 37237
b: refs/heads/master
c: c84ef53
h: refs/heads/master
i:
  37235: cd7b14e
v: v3
  • Loading branch information
Andi Kleen authored and Andi Kleen committed Sep 29, 2006
1 parent ef68adb commit d437745
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 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: 34596dc9e59d7bece16fe5aba08116b49465da26
refs/heads/master: c84ef5305930d19bdd6cd576b3a3a73786a82e57
4 changes: 2 additions & 2 deletions trunk/include/asm-x86_64/semaphore.h
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ static inline int down_interruptible(struct semaphore * sem)
"jns 2f\n\t"
"call __down_failed_interruptible\n"
"2:\n"
:"=a" (result), "=m" (sem->count)
:"=&a" (result), "=m" (sem->count)
:"D" (sem)
:"memory");
return result;
Expand All @@ -153,7 +153,7 @@ static inline int down_trylock(struct semaphore * sem)
"jns 2f\n\t"
"call __down_failed_trylock\n\t"
"2:\n"
:"=a" (result), "=m" (sem->count)
:"=&a" (result), "=m" (sem->count)
:"D" (sem)
:"memory","cc");
return result;
Expand Down

0 comments on commit d437745

Please sign in to comment.