runtime: fix SI_USER for FreeBSD

Ref: http://svnweb.freebsd.org/base/head/sys/sys/signal.h?revision=HEAD&view=markup

R=golang-dev, devon.odell, r
CC=golang-dev
https://golang.org/cl/6490118
This commit is contained in:
Shenghou Ma 2012-09-17 01:08:41 +08:00
parent 7b7a7a5737
commit ecb2a0a9e5
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ int32 runtime·sysctl(uint32*, uint32, byte*, uintptr*, byte*, uintptr);
void runtime·raisesigpipe(void);
#define NSIG 33
#define SI_USER 0
#define SI_USER 0x10001
#define RLIMIT_AS 10
typedef struct Rlimit Rlimit;