|
DataMuseum.dkPresents historical artifacts from the history of: DKUUG/EUUG Conference tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about DKUUG/EUUG Conference tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - metrics - download
Length: 368 (0x170) Types: TextFile Names: »selecttty.c«
└─⟦a0efdde77⟧ Bits:30001252 EUUGD11 Tape, 1987 Spring Conference Helsinki └─⟦this⟧ »EUUGD11/euug-87hel/sec8/sps/selecttty.c«
# include "sps.h" # include "flags.h" /* SELECTTTY - Decides whether this process is interesting for its tty */ selecttty ( p ) register struct process *p ; { register union flaglist *fp ; extern struct flags Flg ; for ( fp = Flg.flg_Tlist ; fp->f_ttyline ; fp++ ) if ( fp->f_ttyline == p->pr_tty ) return ( 1 ) ; return ( 0 ) ; }