Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 18923
b: refs/heads/master
c: c83d463
h: refs/heads/master
i:
  18921: 37b281a
  18919: 47a6875
v: v3
  • Loading branch information
Jeff Dike authored and Linus Torvalds committed Jan 19, 2006
1 parent 8eb8cf3 commit ac315b7
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: 1d7173baf286c8b720f97f119ec92be43076ebde
refs/heads/master: c83d4635ee8c8fe16046ff6cabcff708be16df75
4 changes: 2 additions & 2 deletions trunk/arch/um/include/longjmp.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
#include "os.h"

#define UML_SIGLONGJMP(buf, val) do { \
siglongjmp(*buf, val); \
longjmp(*buf, val); \
} while(0)

#define UML_SIGSETJMP(buf, enable) ({ \
int n; \
enable = get_signals(); \
n = sigsetjmp(*buf, 1); \
n = setjmp(*buf); \
if(n != 0) \
set_signals(enable); \
n; })
Expand Down

0 comments on commit ac315b7

Please sign in to comment.