Home | History | Annotate | Download | only in Support

Lines Matching defs:Handler

139 // The vectored exception handler functionality was added in Windows
187 // handler as the front of the list, though there's no assurances that
189 // our handler). This 1) isn't likely, and 2) shouldn't cause problems.
204 // Now we can remove the vectored exception handler from the chain
271 // Setup the signal handler.
272 struct sigaction Handler;
273 Handler.sa_handler = CrashRecoverySignalHandler;
274 Handler.sa_flags = 0;
275 sigemptyset(&Handler.sa_mask);
278 sigaction(Signals[i], &Handler, &PrevActions[i]);