home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 4 / DATAFILE_PDCD4.iso / utilities / utilss / sockets / include / sys / h / proc < prev    next >
Encoding:
Text File  |  1995-01-11  |  604 b   |  25 lines

  1. /* -*-C-*-
  2.  *
  3.  * $Header: /ax/networking:include/sys/proc.h:networking  1.1  $
  4.  * $Source: /ax/networking:include/sys/proc.h: $
  5.  *
  6.  * proc.h - a (severely) cut down version of the UNIX proc.h
  7.  *
  8.  * Copyright (c) 1995 Acorn Computers Ltd., Cambridge, England
  9.  *
  10.  * $Log:    proc.h,v $
  11.  * Revision 1.1  95/01/11  10:19:33  kwelton
  12.  * Initial revision
  13.  * 
  14.  */
  15. struct proc
  16. {
  17.     uid_t    p_uid;        /* user id, used to direct tty signals */
  18.     short    p_pgrp;        /* name of process group leader */
  19.     char    *p_wchan;        /* event process is awaiting */
  20. };
  21.  
  22. extern struct proc *pfind(short pgrp);
  23.  
  24. /* EOF proc.h */
  25.