Re: [Mono-devel-list] [PATCH] Trace at will

2005-06-07 Thread Bill Middleton
As Martin pointed out, this applied to very old version of FreeBSD.  After diffing against the older version of gcconfig.h, I see that the redefinition of SIG_SUSPEND and SIG_THR_RESTART to USR1 and USR2 respectively applied exclusively to FreeBSD, and was specific to the port to FreeBSD4.x.  Mono

Re: [Mono-devel-list] [PATCH] Trace at will

2005-06-07 Thread Bill Middleton
On 6/7/05, Gonzalo Paniagua Javier <[EMAIL PROTECTED]> wrote: On Sun, 2005-06-05 at 12:45 +0200, Bill Middleton wrote:>> There's a mention in libgc/include/private/gc_priv.h  about> USR2 already being used by linuxthreads when SIG_SUSPEND is> redefined as SIGPWR.  I have no

Re: [Mono-devel-list] [PATCH] Trace at will

2005-06-07 Thread Gonzalo Paniagua Javier
On Sun, 2005-06-05 at 12:45 +0200, Bill Middleton wrote: > > There's a mention in libgc/include/private/gc_priv.h about > USR2 already being used by linuxthreads when SIG_SUSPEND is > redefined as SIGPWR. I have no idea if thats relevant > anymore, though. I reca

Re: [Mono-devel-list] [PATCH] Trace at will

2005-06-07 Thread Martin Baulig
On Sun, 2005-06-05 at 12:23 +0200, Bill Middleton wrote: > There's a mention in libgc/include/private/gc_priv.h about USR2 > already being used by linuxthreads when SIG_SUSPEND is redefined as > SIGPWR. I have no idea if thats relevant anymore, though. I recall > this only because FreeBSD had a

Re: [Mono-devel-list] [PATCH] Trace at will

2005-06-05 Thread Bill Middleton
There's a mention in libgc/include/private/gc_priv.h  about USR2 already being used by linuxthreads when SIG_SUSPEND is redefined as SIGPWR.  I have no idea if thats relevant anymore, though.  I recall this only because FreeBSD had a problem with USR2 and USR2 that had to be changed there in libgc

Re: [Mono-devel-list] [PATCH] Trace at will

2005-06-05 Thread Bill Middleton
There's a mention in libgc/include/private/gc_priv.h  about USR2 already being used by linuxthreads when SIG_SUSPEND is redefined as SIGPWR.  I have no idea if thats relevant anymore, though.  I recall this only because FreeBSD had a problem with USR2 and USR2 that had to be changed there in libgc

[Mono-devel-list] [PATCH] Trace at will

2005-06-04 Thread Gonzalo Paniagua Javier
Hi there. The attached patch allows the user to enable/disable tracing in the runtime at will by using SIGUSR2. Running mono like: mono --trace=disabled test.exe makes trace be off on start up and sending a SIGUSR2 to the process will toggle the trace state. Ok to commit this? (+ manua