This is the mail archive of the cygwin@sourceware.cygnus.com mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

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


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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]