mirror of git://gcc.gnu.org/git/gcc.git
runtime: Don't block SIGTRAP while creating a new thread.
Thanks to Uros Bizjak. From-SVN: r196362
This commit is contained in:
parent
e664c61c84
commit
0a2f103a45
|
|
@ -1256,6 +1256,12 @@ runtime_newm(void)
|
||||||
// Block signals during pthread_create so that the new thread
|
// Block signals during pthread_create so that the new thread
|
||||||
// starts with signals disabled. It will enable them in minit.
|
// starts with signals disabled. It will enable them in minit.
|
||||||
sigfillset(&clear);
|
sigfillset(&clear);
|
||||||
|
|
||||||
|
#ifdef SIGTRAP
|
||||||
|
// Blocking SIGTRAP reportedly breaks gdb on Alpha GNU/Linux.
|
||||||
|
sigdelset(&clear, SIGTRAP);
|
||||||
|
#endif
|
||||||
|
|
||||||
sigemptyset(&old);
|
sigemptyset(&old);
|
||||||
sigprocmask(SIG_BLOCK, &clear, &old);
|
sigprocmask(SIG_BLOCK, &clear, &old);
|
||||||
ret = pthread_create(&tid, &attr, runtime_mstart, mp);
|
ret = pthread_create(&tid, &attr, runtime_mstart, mp);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue