Re: [Qemu-devel] [PATCH 1/5] linux-user: remove hardcoded value of _NSIG in signal.c

2009-10-23 Thread Aurelien Jarno
Stefan Weil a écrit : > Aurelien Jarno schrieb: >> From: Arnaud Patard >> >> In a bunch of places, 64 is used as value of _NSIG but it's wrong >> at least on MIPS were _NSIG is 128. >> >> Signed-off-by: Arnaud Patard >> Signed-off-by: Aurelien Jarno >> --- >> linux-user/signal.c | 12 ++--

Re: [Qemu-devel] [PATCH 1/5] linux-user: remove hardcoded value of _NSIG in signal.c

2009-10-23 Thread Stefan Weil
Aurelien Jarno schrieb: > From: Arnaud Patard > > In a bunch of places, 64 is used as value of _NSIG but it's wrong > at least on MIPS were _NSIG is 128. > > Signed-off-by: Arnaud Patard > Signed-off-by: Aurelien Jarno > --- > linux-user/signal.c | 12 ++-- > 1 files changed, 6 insert

[Qemu-devel] [PATCH 1/5] linux-user: remove hardcoded value of _NSIG in signal.c

2009-10-22 Thread Aurelien Jarno
From: Arnaud Patard In a bunch of places, 64 is used as value of _NSIG but it's wrong at least on MIPS were _NSIG is 128. Signed-off-by: Arnaud Patard Signed-off-by: Aurelien Jarno --- linux-user/signal.c | 12 ++-- 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/linu