Searched refs:uthread (Results 1 – 3 of 3) sorted by relevance
35 struct uthread *curr = current; in uthread_trampoline()49 static void uthread_free(struct uthread *uthread) in uthread_free() argument51 if (!uthread) in uthread_free()53 free(uthread->stack); in uthread_free()54 free(uthread); in uthread_free()97 static void uthread_resume(struct uthread *uthread) in uthread_resume() argument100 current = uthread; in uthread_resume()101 longjmp(uthread->ctx, 1); in uthread_resume()107 struct uthread *next; in uthread_schedule()108 struct uthread *tmp; in uthread_schedule()[all …]
162 obj-$(CONFIG_UTHREAD) += uthread.o
1283 int "Default uthread stack size"1287 The default stack size for uthreads. Each uthread has its own stack.
Completed in 21 milliseconds