|
| [Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] |
void fatalSigHandler(int sig, siginfo_t* info, void* context)
{
// We are very limited in what we are allowed to do in a signal handler. // Memory should not be allocated, and most libc functions should not be used.
static char sig_message[] = "Aborting: Fatal signal occurred!\n";
write(1, sig_message, sizeof(sig_message)); exit(1); }
matt.
_______________________________________________ Do not post admin requests to the list. They will be ignored. Darwin-dev mailing list (email@hidden) Help/Unsubscribe/Update your Subscription: This email sent to email@hidden
| References: | |
| >Catching signal errors (From: Rick Steele <email@hidden>) | |
| >Re: Catching signal errors (From: Kevin Harris <email@hidden>) |
| Home | Archives | Terms/Conditions | Contact | RSS | Lists | About |
Visit the Apple Store online or at retail locations.
1-800-MY-APPLE
Contact Apple | Terms of Use | Privacy Policy
Copyright © 2011 Apple Inc. All rights reserved.