site_archiver@lists.apple.com Delivered-To: darwin-kernel@lists.apple.com On Sep 27, 2004, at 12:55 PM, Matt Jaffa wrote: No, but I should do that I am guessing right? When is it smart to do M_NOWAIT? Matt On Sep 27, 2004, at 10:31 AM, stephane sudre wrote: On Sep 27, 2004, at 6:28 PM, Matt Jaffa wrote: Hi, Cheers.....Peter _______________________________________________ Do not post admin requests to the list. They will be ignored. Darwin-kernel mailing list (Darwin-kernel@lists.apple.com) Help/Unsubscribe/Update your Subscription: http://lists.apple.com/mailman/options/darwin-kernel/site_archiver%40lists.a... I have been core dumping my panics to a remote machine and been using gdb to figure out where in my NKE it keeps crashing, and it appears to be randomly crashing at different parts. maybe due to the fact I call _MALLOC and get space but it never allocated it. because I have a structure pointer that I allocate and store things in there, but it is crashing at this line: one->thedata = data; To me one must not be allocated so it crashes, how do I ensure that calling _MALLOC is going to give me space and not crash my NKE??? Are you using M_WAITOK? M_NOWAIT is good if you don't want to block. You'll retry somehow on your own, or abandon the attempt, or ... M_WAITOK means that you want to wait until the request can be fulfilled. That may take a while. This email sent to site_archiver@lists.apple.com
participants (1)
-
Peter Lovell