|
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 - downloadIndex: T p
Length: 627 (0x273) Types: TextFile Names: »prog.h«
└─⟦2d1937cfd⟧ Bits:30007241 EUUGD22: P.P 5.0 └─⟦dc59850a2⟧ »EurOpenD22/pp5.0/pp-5.tar.Z« └─⟦e5a54fb17⟧ └─⟦this⟧ »pp-5.0/Chans/shell/prog.h«
/* prog.h: structures for the program/shell channel */ /* * @(#) $Header: /cs/research/pp/hubris/pp-beta/Chans/shell/RCS/prog.h,v 5.0 90/09/20 15:53:45 pp Exp Locker: pp $ * * $Log: prog.h,v $ * Revision 5.0 90/09/20 15:53:45 pp * rcsforce : 5.0 public release * * */ #ifndef _H_SHELL_PROG #define _H_SHELL_PROG #include <pwd.h> typedef struct prog_struct { unsigned int timeout_in_secs; /* in seconds */ char *cmd_line; int uid; int gid; char *username; char *home; char *shell; } ProgInfo; #define NULLPROG ((ProgInfo *) 0) ProgInfo *tb_getprog(); void prog_free(); #endif