unix/src/sunos-4-x/Uprocess.i3


Copyright (C) 1994, Digital Equipment Corp.

INTERFACE Uprocess;

FROM Ctypes IMPORT int;
** getpgrp(2) - get process group **

<*EXTERNAL*> PROCEDURE getpgrp (pid: int): int;
** getpid(2), getppid(2) - get process identification **

<*EXTERNAL*> PROCEDURE getpid (): int;
<*EXTERNAL*> PROCEDURE getppid (): int;
** setpgrp - set process group **

<*EXTERNAL*> PROCEDURE setpgrp (pid, pgrp: int): int;

END Uprocess.