home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / unix / volume23 / sps2 / part04 / selecttty.c < prev   
C/C++ Source or Header  |  1991-01-08  |  448b  |  22 lines

  1. # ifndef lint
  2. static char SccsId[] =  "@(#)selecttty.c    1.1\t10/1/88" ;
  3. # endif
  4.  
  5. # include       "sps.h"
  6. # include       "flags.h"
  7.  
  8. /* SELECTTTY - Decides whether this process is interesting for its tty */
  9. selecttty ( p )
  10.  
  11. register struct process         *p ;
  12.  
  13. {
  14.     register union flaglist *fp ;
  15.     extern struct flags     Flg ;
  16.  
  17.     for ( fp = Flg.flg_Tlist ; fp->f_ttyline ; fp++ )
  18.         if ( fp->f_ttyline == p->pr_tty )
  19.             return ( 1 ) ;
  20.     return ( 0 ) ;
  21. }
  22.