blob: 0eb5f410edfbdc964b0a5aa390f28baf387c55f5 [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];
ulong rendval;
ulong rendtag;
Uproc *rendhash;
p9jmp_buf notejb;
};
extern Uproc *_p9uproc(int);
extern void _p9uprocdie(void);
extern void _clearuproc(void);
#endif