X-Git-Url: https://git.saurik.com/apple/xnu.git/blobdiff_plain/316670eb35587141e969394ae8537d66b9211e80..a1c7dba18ef36983396c282fe85292db066e39db:/osfmk/ipc/ipc_init.h diff --git a/osfmk/ipc/ipc_init.h b/osfmk/ipc/ipc_init.h index 36fd8976b..777c7e482 100644 --- a/osfmk/ipc/ipc_init.h +++ b/osfmk/ipc/ipc_init.h @@ -121,9 +121,12 @@ extern int ipc_pset_max; */ /* IPC initialization needed before creation of kernel task */ -extern void ipc_bootstrap(void) __attribute__((section("__TEXT, initcode"))); +extern void ipc_bootstrap(void); -/* Remaining IPC initialization */ -extern void ipc_init(void) __attribute__((section("__TEXT, initcode"))); +/* Remaining IPC initialization (not thread based) */ +extern void ipc_init(void); + +/* IPC initialization dependent on thread call support */ +extern void ipc_thread_call_init(void); #endif /* _IPC_IPC_INIT_H_ */