this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

[kernel/libsyscall] Build mach/task.c

Thomas A c86fdac7 de8c9bbe

+7 -1
+1 -1
src/kernel/libsyscall/CMakeLists.txt
··· 290 290 mach/semaphore.c 291 291 mach/slot_name.c 292 292 mach/string.c 293 - # mach/task.c 293 + mach/task.c 294 294 mach/thread_act.c 295 295 296 296 bsdsyscalls/___abort_with_payload.S
+6
src/kernel/libsyscall/mach/task.c
··· 26 26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@ 27 27 */ 28 28 29 + #ifdef DARLING 30 + // Temporary workaround until I can figure out where 31 + // task_internal.h comes from. 32 + #include <mach/task.h> 33 + #else 29 34 #undef _task_user_ 30 35 #include <mach/task_internal.h> 36 + #endif 31 37 32 38 extern mach_port_t mach_task_self_; 33 39