pid2task.lisp 167 B

123456789101112
  1. (in-package :hurd)
  2. (defcfun ("pid2task" %pid2task)
  3. task
  4. (pid pid-t))
  5. (defun pid2task (pid)
  6. "Return the task control port of process PID."
  7. (%pid2task pid))