Need help. Latest snapshot may be next cygwin net release.

Vadim Egorov egorovv@mailandnews.com
Thu May 25 23:11:00 GMT 2000


Sorry, the message body seems was lost on the way.

Chris Faylor <cgf@cygnus.com> writes:

> I would appreciate it if any adventurous souls would try out the
> latest cygwin snapshot by downloading this:

libstdc++-v3 configure hangs again. An old problem with signals.
This is a  piece of code which hangs and  a strace log.

#include <unistd.h>
#include <signal.h>
#include <setjmp.h>

static jmp_buf	env;
int signo = SIGSEGV;

static void sig_handler(int sig)
{
    static sigset_t x;
    signal (sig, sig_handler);
    sigemptyset (&x);
    sigprocmask(SIG_SETMASK, &x, NULL);

    longjmp(env, 1);
}

int main(int argc, char * * argv)
{
    if (setjmp(env) == 0 ) 
    {
        signal(signo, sig_handler);
        *(char*)0 = 1;
    }
    return 0;
}
-- 
Regards,
Vadim Egorov 


--
Want to unsubscribe from this list?
Send a message to cygwin-unsubscribe@sourceware.cygnus.com



More information about the Cygwin mailing list