708 > > sigaddset(&allowdebug_blocked_sigs, SHUTDOWN1_SIGNAL); > sigaddset(&allowdebug_blocked_sigs, SHUTDOWN2_SIGNAL); > sigaddset(&allowdebug_blocked_sigs, SHUTDOWN3_SIGNAL); 708a724,730 > // In this case, we want to block these signals while assertions are turned > // on. Note:...
else if(!strcasecmp(optarg, "ABRT"))kill_tincd = SIGABRT;else {kill_tincd = atoi(optarg);if(!kill_tincd) {fprintf(stderr, "Invalid argument `%s'; SIGNAL must be a number or one of HUP, TERM, KILL, USR1, USR2, WINCH, INT or ALRM.\n",optarg);...
I get a return code of 134, which means the child process got killed by signal 6 (134-128). Signal 6 is SIGABRT on my machine. $ kill -l | grep SIGABRT 6) SIGABRT 7) SIGBUS 8) SIGFPE 9) SIGKILL 10) SIGUSR1 strace from the first run where yarn called node directly: 29799 write...