Commit 469d2810 authored by Stephen Rothwell's avatar Stephen Rothwell Committed by Vojtech Pavlik

[PATCH] fix __SI_CODE

This small patch is extracted from George Anzinger's High-res-timer
patches.
parent b873ed19
......@@ -91,7 +91,7 @@ typedef struct siginfo {
#define __SI_FAULT (3 << 16)
#define __SI_CHLD (4 << 16)
#define __SI_RT (5 << 16)
#define __SI_CODE(T,N) ((T) << 16 | ((N) & 0xffff))
#define __SI_CODE(T,N) ((T) | ((N) & 0xffff))
#else
#define __SI_KILL 0
#define __SI_TIMER 0
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment