135 lines
4.0 KiB
C
135 lines
4.0 KiB
C
|
/*
|
||
|
* This file is part of the UCB release of Plan 9. It is subject to the license
|
||
|
* terms in the LICENSE file found in the top-level directory of this
|
||
|
* distribution and at http://akaros.cs.berkeley.edu/files/Plan9License. No
|
||
|
* part of the UCB release of Plan 9, including this file, may be copied,
|
||
|
* modified, propagated, or distributed except according to the terms contained
|
||
|
* in the LICENSE file.
|
||
|
*/
|
||
|
|
||
|
typedef struct Alt Alt;
|
||
|
typedef struct Channel Channel;
|
||
|
typedef struct Ref Ref;
|
||
|
|
||
|
/*
|
||
|
* Channel structure. S is the size of the buffer. For unbuffered channels
|
||
|
* s is zero. v is an array of s values. If s is zero, v is unused.
|
||
|
* f and n represent the state of the queue pointed to by v.
|
||
|
*/
|
||
|
|
||
|
enum {
|
||
|
Nqwds = 2,
|
||
|
Nqshift = 5, /* log₂ # of bits in long */
|
||
|
Nqmask = -1,
|
||
|
Nqbits = (1 << Nqshift) * 2,
|
||
|
};
|
||
|
|
||
|
struct Channel {
|
||
|
int s; /* Size of the channel (may be zero) */
|
||
|
uint32_t f; /* Extraction point (insertion pt: (f+n) % s) */
|
||
|
uint32_t n; /* Number of values in the channel */
|
||
|
int e; /* Element size */
|
||
|
int freed; /* Set when channel is being deleted */
|
||
|
volatile Alt **qentry; /* Receivers/senders waiting (malloc) */
|
||
|
volatile int nentry; /* # of entries malloc-ed */
|
||
|
volatile int closed; /* channel is closed */
|
||
|
uint8_t v[1]; /* Array of s values in the channel */
|
||
|
};
|
||
|
|
||
|
|
||
|
/* Channel operations for alt: */
|
||
|
typedef enum {
|
||
|
CHANEND,
|
||
|
CHANSND,
|
||
|
CHANRCV,
|
||
|
CHANNOP,
|
||
|
CHANNOBLK,
|
||
|
} ChanOp;
|
||
|
|
||
|
struct Alt {
|
||
|
Channel *c; /* channel */
|
||
|
void *v; /* pointer to value */
|
||
|
ChanOp op; /* operation */
|
||
|
char *err; /* did the op fail? */
|
||
|
/*
|
||
|
* the next variables are used internally to alt
|
||
|
* they need not be initialized
|
||
|
*/
|
||
|
Channel **tag; /* pointer to rendez-vous tag */
|
||
|
int entryno; /* entry number */
|
||
|
};
|
||
|
|
||
|
struct Ref {
|
||
|
int32_t ref;
|
||
|
};
|
||
|
|
||
|
int alt(Alt alts[]);
|
||
|
int chanclose(Channel*);
|
||
|
int chanclosing(Channel *c);
|
||
|
Channel*chancreate(int elemsize, int bufsize);
|
||
|
int chaninit(Channel *c, int elemsize, int elemcnt);
|
||
|
void chanfree(Channel *c);
|
||
|
int chanprint(Channel *, char *, ...);
|
||
|
int32_t decref(Ref *r); /* returns 0 iff value is now zero */
|
||
|
void incref(Ref *r);
|
||
|
int nbrecv(Channel *c, void *v);
|
||
|
void* nbrecvp(Channel *c);
|
||
|
uint32_t nbrecvul(Channel *c);
|
||
|
int nbsend(Channel *c, void *v);
|
||
|
int nbsendp(Channel *c, void *v);
|
||
|
int nbsendul(Channel *c, uint32_t v);
|
||
|
void needstack(int);
|
||
|
int proccreate(void (*f)(void *arg), void *arg, uint32_t stacksize);
|
||
|
int procrfork(void (*f)(void *arg), void *arg, uint32_t stacksize, int flag);
|
||
|
void** procdata(void);
|
||
|
void procexec(Channel *, char *, char *[]);
|
||
|
void procexecl(Channel *, char *, ...);
|
||
|
int recv(Channel *c, void *v);
|
||
|
void* recvp(Channel *c);
|
||
|
uint32_t recvul(Channel *c);
|
||
|
int send(Channel *c, void *v);
|
||
|
int sendp(Channel *c, void *v);
|
||
|
int sendul(Channel *c, uint32_t v);
|
||
|
int threadcreate(void (*f)(void *arg), void *arg, uint32_t stacksize);
|
||
|
void** threaddata(void);
|
||
|
void threadexits(char *);
|
||
|
void threadexitsall(char *);
|
||
|
int threadgetgrp(void); /* return thread group of current thread */
|
||
|
char* threadgetname(void);
|
||
|
void threadint(int); /* interrupt thread */
|
||
|
void threadintgrp(int); /* interrupt threads in grp */
|
||
|
void threadkill(int); /* kill thread */
|
||
|
void threadkillgrp(int); /* kill threads in group */
|
||
|
void threadmain(int argc, char *argv[]);
|
||
|
void threadnonotes(void);
|
||
|
int threadnotify(int (*f)(void*, char*), int in);
|
||
|
int threadid(void);
|
||
|
int threadpid(int);
|
||
|
int threadsetgrp(int); /* set thread group, return old */
|
||
|
void threadsetname(char *fmt, ...);
|
||
|
Channel*threadwaitchan(void);
|
||
|
int tprivalloc(void);
|
||
|
void tprivfree(int);
|
||
|
void **tprivaddr(int);
|
||
|
void yield(void);
|
||
|
|
||
|
extern int mainstacksize;
|
||
|
|
||
|
/* slave I/O processes */
|
||
|
typedef struct Ioproc Ioproc;
|
||
|
|
||
|
Ioproc* ioproc(void);
|
||
|
void closeioproc(Ioproc*);
|
||
|
void iointerrupt(Ioproc*);
|
||
|
|
||
|
int ioclose(Ioproc*, int);
|
||
|
int iodial(Ioproc*, char*, char*, char*, int*);
|
||
|
int ioopen(Ioproc*, char*, int);
|
||
|
int32_t ioread(Ioproc*, int, void*, int32_t);
|
||
|
int32_t ioreadn(Ioproc*, int, void*, int32_t);
|
||
|
int32_t iowrite(Ioproc*, int, void*, int32_t);
|
||
|
int iosleep(Ioproc*, int32_t);
|
||
|
|
||
|
int32_t iocall(Ioproc*, int32_t (*)(va_list*), ...);
|
||
|
void ioret(Ioproc*, int);
|