Home
last modified time | relevance | path

Searched refs:corpse (Results 1 – 9 of 9) sorted by relevance

/xnu-11215/libkdd/kdd.xcodeproj/
H A Dproject.pbxproj70 …08B4808B1BF9474A00B4AAE0 /* corpse-sample in Resources */ = {isa = PBXBuildFile; fileRef = 08B4808…
90 …D6C5D01C4DDDB6005E617C /* corpse-twr-sample in Resources */ = {isa = PBXBuildFile; fileRef = 13AF2…
225 …BF9473800B4AAE0 /* corpse-sample */ = {isa = PBXFileReference; lastKnownFileType = text; name = "c…
226 …E0 /* corpse-sample.plist.gz */ = {isa = PBXFileReference; lastKnownFileType = archive.gzip; name …
243 …D6A000795E2 /* corpse-twr-sample */ = {isa = PBXFileReference; lastKnownFileType = file; name = "c…
244 …* corpse-twr-sample.plist.gz */ = {isa = PBXFileReference; lastKnownFileType = archive.gzip; name …
251 …00ACFFCC /* corpse-twr-sample-v2 */ = {isa = PBXFileReference; lastKnownFileType = file; name = "c…
377 13F3DA9B1C7C1BE700ACFFCC /* corpse-twr-sample-v2 */,
379 13AF287B1C4A0D6A000795E2 /* corpse-twr-sample */,
404 08B480891BF9473800B4AAE0 /* corpse-sample */,
[all …]
/xnu-11215/tests/vm/
H A Dtest_vm_no_pager.m82 T_LOG("System corpse count is %d", total_corpse_count);
92 /* Iterate corpse kcdata and verify `current_expected_triage_string` is found */
112 T_LOG("Verifiyng corpse data");
125 T_FAIL("Failed to malloc for corpse data");
150 T_PASS("Found expected crash triage string in corpse kcdata:\n`%s`", kt.triage_string1);
310 dispatch_semaphore_wait(sync_sema, DISPATCH_TIME_FOREVER); // Wait for corpse kcdata processing
/xnu-11215/osfmk/corpses/
H A Dcorpse.c622 task_t corpse = TASK_NULL; in task_enqueue_exception_with_corpse() local
627 kr = task_generate_corpse_internal(task, &corpse, &thread, etype, in task_enqueue_exception_with_corpse()
634 assert(corpse != TASK_NULL); in task_enqueue_exception_with_corpse()
636 thread_exception_enqueue(corpse, thread, etype); in task_enqueue_exception_with_corpse()
/xnu-11215/osfmk/kern/
H A Dipc_tt.c3810 task_t corpse) in convert_corpse_to_port_and_nsrequest() argument
3815 assert(task_is_a_corpse(corpse)); in convert_corpse_to_port_and_nsrequest()
3816 itk_lock(corpse); in convert_corpse_to_port_and_nsrequest()
3817 port = corpse->itk_task_ports[TASK_FLAVOR_CONTROL]; in convert_corpse_to_port_and_nsrequest()
3818 kr = ipc_kobject_make_send_nsrequest(port, corpse, IKOT_TASK_CONTROL); in convert_corpse_to_port_and_nsrequest()
3820 itk_unlock(corpse); in convert_corpse_to_port_and_nsrequest()
3822 task_deallocate(corpse); in convert_corpse_to_port_and_nsrequest()
H A Dtask.c2427 task_t corpse, /* corpse or corpse fork */ in task_deliver_crash_notification() argument
2432 kcdata_descriptor_t crash_info = corpse->corpse_info; in task_deliver_crash_notification()
2443 assert(task_is_a_corpse(corpse)); in task_deliver_crash_notification()
2445 task_lock(corpse); in task_deliver_crash_notification()
2454 queue_iterate(&corpse->threads, th_iter, thread_t, task_threads) in task_deliver_crash_notification()
2460 task_unlock(corpse); in task_deliver_crash_notification()
2463 task_reference(corpse); in task_deliver_crash_notification()
2464 corpse_port = convert_corpse_to_port_and_nsrequest(corpse); in task_deliver_crash_notification()
2469 …f("Failed to send exception EXC_CORPSE_NOTIFY. error code: %d for pid %d\n", kr, task_pid(corpse)); in task_deliver_crash_notification()
/xnu-11215/doc/vm/
H A Dmemorystatus.md185 …ue_fg_band_notify`). To avoid unnecessary corpse forking and purging, memorystatus blocks all addi…
/xnu-11215/osfmk/conf/
H A DMakefile.template271 corpse.o_CWARNFLAGS_ADD += -Wno-sign-conversion
H A Dfiles245 osfmk/corpses/corpse.c standard
/xnu-11215/bsd/kern/
H A Dkern_sysctl.c6016 bool corpse = task_is_a_corpse(task); variable
6027 if (corpse == false) {