summaryrefslogtreecommitdiff
path: root/kern/ipc_tt.c
diff options
context:
space:
mode:
Diffstat (limited to 'kern/ipc_tt.c')
-rw-r--r--kern/ipc_tt.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/kern/ipc_tt.c b/kern/ipc_tt.c
index 04a5a92f..18624c55 100644
--- a/kern/ipc_tt.c
+++ b/kern/ipc_tt.c
@@ -517,6 +517,8 @@ mach_task_self(void)
task_t task = current_task();
ipc_port_t sright;
+ printf("%s\n", __func__);
+
sright = retrieve_task_self_fast(task);
return ipc_port_copyout_send(sright, task->itk_space);
}
@@ -539,6 +541,8 @@ mach_thread_self(void)
task_t task = thread->task;
ipc_port_t sright;
+ printf("%s\n", __func__);
+
sright = retrieve_thread_self_fast(thread);
return ipc_port_copyout_send(sright, task->itk_space);
}
@@ -561,6 +565,8 @@ mach_reply_port(void)
mach_port_t name;
kern_return_t kr;
+ printf("%s\n", __func__);
+
kr = ipc_port_alloc(current_task()->itk_space, &name, &port);
if (kr == KERN_SUCCESS)
ip_unlock(port);