blob: 0c359c9e072aa471bbd08145df523387666ce190 [file] [log] [blame]
#ifndef _9PROC_H_
#define _9PROC_H_ 1
enum
{
NPRIV = 16,
RENDHASH = 33,
};
typedef struct Uproc Uproc;
struct Uproc
{
int pid;
int state;
void *priv[NPRIV];
p9jmp_buf notejb;
};
extern Uproc *_p9uproc(int);
extern void _p9uprocdie(void);
extern void _clearuproc(void);
#endif