+void sendsig(struct proc *, /*sig_t*/ user_addr_t action, int sig,
+ int returnmask, uint32_t code);
+
+void psignal(struct proc *p, int sig);
+void psignal_locked(struct proc *, int);
+void pgsignal(struct pgrp *pgrp, int sig, int checkctty);
+void tty_pgsignal(struct tty * tp, int sig, int checkctty);
+void threadsignal(thread_t sig_actthread, int signum,
+ mach_exception_code_t code);
+int thread_issignal(proc_t p, thread_t th, sigset_t mask);
+void psignal_vfork(struct proc *p, task_t new_task, thread_t thread,
+ int signum);
+void signal_setast(thread_t sig_actthread);
+void pgsigio(pid_t pgid, int signalnum);
+
+void sig_lock_to_exit(struct proc *p);
+int sig_try_locked(struct proc *p);
+
+#endif /* BSD_KERNEL_PRIVATE */
+
+
+#ifdef XNU_KERNEL_PRIVATE
+
+/* Functions exported to Mach as well */
+
+#define COREDUMP_IGNORE_ULIMIT 0x0001 /* Ignore the process's core file ulimit. */
+#define COREDUMP_FULLFSYNC 0x0002 /* Run F_FULLFSYNC on the core file's vnode */