[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Patch] --with-threads on MinGW
From: |
Kevin Ryde |
Subject: |
Re: [Patch] --with-threads on MinGW |
Date: |
Thu, 14 Dec 2006 11:12:22 +1100 |
User-agent: |
Gnus/5.110006 (No Gnus v0.6) Emacs/21.4 (gnu/linux) |
Nils Durner <address@hidden> writes:
>
> static SCM
> signal_delivery_thread (void *data)
> {
> - sigset_t all_sigs;
> int n, sig;
> char sigbyte;
>
> +#ifndef __MINGW32__
> + sigset_t all_sigs;
> +
> sigfillset (&all_sigs);
> scm_i_pthread_sigmask (SIG_SETMASK, &all_sigs, NULL);
> +#endif
Are you sure about that? Does it mean the signal delivery thread
doesn't catch any signals?
- [Patch] --with-threads on MinGW, Nils Durner, 2006/12/03
- Re: [Patch] --with-threads on MinGW, Kevin Ryde, 2006/12/03
- Re: [Patch] --with-threads on MinGW, Nils Durner, 2006/12/04
- Re: [Patch] --with-threads on MinGW, Kevin Ryde, 2006/12/13
- Re: [Patch] --with-threads on MinGW, Kevin Ryde, 2006/12/13
- Re: [Patch] --with-threads on MinGW, Kevin Ryde, 2006/12/13
- Re: [Patch] --with-threads on MinGW, Nils Durner, 2006/12/14
- Re: [Patch] --with-threads on MinGW, Kevin Ryde, 2006/12/14
- Re: [Patch] --with-threads on MinGW, Kevin Ryde, 2006/12/13
Re: [Patch] --with-threads on MinGW,
Kevin Ryde <=