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