Searched refs:new_sigaction (Results 1 – 2 of 2) sorted by relevance
224 struct sigaction new_sigaction; in TracerThread() local225 internal_memset(&new_sigaction, 0, sizeof(new_sigaction)); in TracerThread()226 new_sigaction.sa_sigaction = TracerThreadSignalHandler; in TracerThread()227 new_sigaction.sa_flags = SA_ONSTACK | SA_SIGINFO; in TracerThread()228 sigfillset(&new_sigaction.sa_mask); in TracerThread()229 sigaction(kUnblockedSignals[signal_index], &new_sigaction, NULL); in TracerThread()264 struct sigaction new_sigaction; in StopTheWorld() local265 internal_memset(&new_sigaction, 0, sizeof(new_sigaction)); in StopTheWorld()266 new_sigaction.sa_handler = SIG_DFL; in StopTheWorld()267 sigfillset(&new_sigaction.sa_mask); in StopTheWorld()[all …]
1946 struct new_sigaction struct1967 struct new_sigaction sa; in sys_rt_sigaction() argument