1
0
Files
irix-657m-src/irix/kern/sys/sockd.h
2022-09-29 17:59:04 +03:00

19 lines
496 B
C

struct sockd_entry {
struct sockd_entry *next;
void (*func)(void *, void *);
void *arg1, *arg2;
};
extern int sockd_timeout(void (*)(), void *, long);
extern void tpisockd_init(void);
extern void sockd_init(void);
/* globals that sockd looks at to control its actions */
extern char pftimo_active;
extern char if_slowtimo_active;
/* functions sockd may use, if enabled */
extern void pffasttimo(void);
extern void pfslowtimo(void);
extern void if_slowtimo(void);