Symbol: cothread_t
sys/dev/virtual/vkernel/disk/vdisk.c
238
vkd_io_intr(cothread_t cotd)
sys/dev/virtual/vkernel/disk/vdisk.c
273
vkd_io_thread(cothread_t cotd)
sys/dev/virtual/vkernel/disk/vdisk.c
61
cothread_t cotd;
sys/dev/virtual/vkernel/disk/vdisk.c
72
static void vkd_io_thread(cothread_t cotd);
sys/dev/virtual/vkernel/disk/vdisk.c
73
static void vkd_io_intr(cothread_t cotd);
sys/dev/virtual/vkernel/net/if_vke.c
135
static void vke_tx_intr(cothread_t cotd);
sys/dev/virtual/vkernel/net/if_vke.c
136
static void vke_tx_thread(cothread_t cotd);
sys/dev/virtual/vkernel/net/if_vke.c
137
static void vke_rx_intr(cothread_t cotd);
sys/dev/virtual/vkernel/net/if_vke.c
138
static void vke_rx_thread(cothread_t cotd);
sys/dev/virtual/vkernel/net/if_vke.c
370
cothread_t cotd = sc->cotd_tx;
sys/dev/virtual/vkernel/net/if_vke.c
531
vke_rx_intr(cothread_t cotd)
sys/dev/virtual/vkernel/net/if_vke.c
582
vke_tx_intr(cothread_t cotd)
sys/dev/virtual/vkernel/net/if_vke.c
625
vke_rx_thread(cothread_t cotd)
sys/dev/virtual/vkernel/net/if_vke.c
706
vke_tx_thread(cothread_t cotd)
sys/dev/virtual/vkernel/net/if_vke.c
96
cothread_t cotd_tx;
sys/dev/virtual/vkernel/net/if_vke.c
97
cothread_t cotd_rx;
sys/platform/vkernel64/include/cothread.h
55
cothread_t cothread_create(void (*thr_func)(cothread_t cotd),
sys/platform/vkernel64/include/cothread.h
56
void (*thr_intr)(cothread_t cotd),
sys/platform/vkernel64/include/cothread.h
58
void cothread_delete(cothread_t *cotdp);
sys/platform/vkernel64/include/cothread.h
59
void cothread_intr(cothread_t cotd);
sys/platform/vkernel64/include/cothread.h
60
void cothread_signal(cothread_t cotd);
sys/platform/vkernel64/include/cothread.h
61
void cothread_wait(cothread_t cotd);
sys/platform/vkernel64/include/cothread.h
62
void cothread_lock(cothread_t cotd, int is_cotd);
sys/platform/vkernel64/include/cothread.h
63
void cothread_unlock(cothread_t cotd, int is_cotd);
sys/platform/vkernel64/include/cothread.h
65
void cothread_sleep(cothread_t cotd, struct timespec *ts);
sys/platform/vkernel64/include/cothread.h
66
void cothread_wakeup(cothread_t cotd, struct timespec *ts);
sys/platform/vkernel64/platform/cothread.c
123
cothread_delete(cothread_t *cotdp)
sys/platform/vkernel64/platform/cothread.c
125
cothread_t cotd;
sys/platform/vkernel64/platform/cothread.c
141
cothread_t cotd = arg;
sys/platform/vkernel64/platform/cothread.c
157
cothread_intr(cothread_t cotd)
sys/platform/vkernel64/platform/cothread.c
167
cothread_signal(cothread_t cotd)
sys/platform/vkernel64/platform/cothread.c
177
cothread_wait(cothread_t cotd)
sys/platform/vkernel64/platform/cothread.c
186
cothread_sleep(cothread_t cotd, struct timespec *ts)
sys/platform/vkernel64/platform/cothread.c
192
cothread_wakeup(cothread_t cotd, struct timespec *ts)
sys/platform/vkernel64/platform/cothread.c
210
cothread_lock(cothread_t cotd, int is_cotd)
sys/platform/vkernel64/platform/cothread.c
221
cothread_unlock(cothread_t cotd, int is_cotd)
sys/platform/vkernel64/platform/cothread.c
78
cothread_t
sys/platform/vkernel64/platform/cothread.c
79
cothread_create(void (*thr_func)(cothread_t cotd),
sys/platform/vkernel64/platform/cothread.c
80
void (*thr_intr)(cothread_t cotd),
sys/platform/vkernel64/platform/cothread.c
83
cothread_t cotd;
sys/platform/vkernel64/platform/systimer.c
217
vktimer_thread(cothread_t cotd)
sys/platform/vkernel64/platform/systimer.c
75
static cothread_t vktimer_cotd;
sys/platform/vkernel64/platform/systimer.c
88
static void vktimer_thread(cothread_t cotd);