rumpfiber.h revision 1.2 1 1.2 pooka /* $NetBSD: rumpfiber.h,v 1.2 2014/08/24 14:37:31 pooka Exp $ */
2 1.2 pooka
3 1.1 justin /*
4 1.1 justin * Copyright (c) 2014 Justin Cormack. All Rights Reserved.
5 1.1 justin *
6 1.1 justin * Redistribution and use in source and binary forms, with or without
7 1.1 justin * modification, are permitted provided that the following conditions
8 1.1 justin * are met:
9 1.1 justin * 1. Redistributions of source code must retain the above copyright
10 1.1 justin * notice, this list of conditions and the following disclaimer.
11 1.1 justin * 2. Redistributions in binary form must reproduce the above copyright
12 1.1 justin * notice, this list of conditions and the following disclaimer in the
13 1.1 justin * documentation and/or other materials provided with the distribution.
14 1.1 justin *
15 1.1 justin * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
16 1.1 justin * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
17 1.1 justin * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
18 1.1 justin * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19 1.1 justin * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20 1.1 justin * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
21 1.1 justin * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22 1.1 justin * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23 1.1 justin * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24 1.1 justin * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25 1.1 justin * SUCH DAMAGE.
26 1.1 justin */
27 1.1 justin
28 1.1 justin #include <sys/queue.h>
29 1.1 justin
30 1.1 justin #include <stdint.h>
31 1.1 justin #include <string.h>
32 1.1 justin #include <time.h>
33 1.1 justin #include <ucontext.h>
34 1.1 justin #include <unistd.h>
35 1.1 justin
36 1.1 justin static void printk(const char *s);
37 1.1 justin
38 1.1 justin static void
39 1.1 justin printk(const char *msg)
40 1.1 justin {
41 1.1 justin int ret __attribute__((unused));
42 1.1 justin
43 1.1 justin ret = write(2, msg, strlen(msg));
44 1.1 justin }
45 1.1 justin
46 1.1 justin struct thread {
47 1.1 justin char *name;
48 1.1 justin void *lwp;
49 1.1 justin void *cookie;
50 1.1 justin int64_t wakeup_time;
51 1.1 justin TAILQ_ENTRY(thread) thread_list;
52 1.1 justin ucontext_t ctx;
53 1.1 justin uint32_t flags;
54 1.1 justin int threrrno;
55 1.1 justin };
56 1.1 justin
57 1.1 justin #define RUNNABLE_FLAG 0x00000001
58 1.1 justin #define THREAD_MUSTJOIN 0x00000002
59 1.1 justin #define THREAD_JOINED 0x00000004
60 1.1 justin #define THREAD_EXTSTACK 0x00000008
61 1.1 justin #define THREAD_TIMEDOUT 0x00000010
62 1.1 justin
63 1.1 justin #define STACKSIZE 65536
64 1.1 justin
65 1.1 justin /* used by experimental _lwp code */
66 1.1 justin void schedule(void);
67 1.1 justin void wake(struct thread *thread);
68 1.1 justin void block(struct thread *thread);
69 1.1 justin struct thread *init_mainthread(void *);
70 1.1 justin void exit_thread(void) __attribute__((noreturn));
71 1.1 justin void set_sched_hook(void (*f)(void *, void *));
72 1.1 justin int abssleep_real(uint64_t millisecs);
73 1.1 justin struct thread* create_thread(const char *name, void *cookie,
74 1.1 justin void (*f)(void *), void *data,
75 1.1 justin void *stack, size_t stack_size);
76 1.1 justin int is_runnable(struct thread *);
77 1.1 justin void set_runnable(struct thread *);
78 1.1 justin void clear_runnable(struct thread *);
79 1.1 justin
80