Home | History | Annotate | Line # | Download | only in librumpuser
      1  1.4  justin /*	$NetBSD: rumpfiber.h,v 1.4 2015/02/15 00:54:32 justin 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 struct thread {
     37  1.1  justin     char *name;
     38  1.1  justin     void *lwp;
     39  1.1  justin     void *cookie;
     40  1.1  justin     int64_t wakeup_time;
     41  1.1  justin     TAILQ_ENTRY(thread) thread_list;
     42  1.1  justin     ucontext_t ctx;
     43  1.4  justin     int flags;
     44  1.1  justin     int threrrno;
     45  1.1  justin };
     46  1.1  justin 
     47  1.1  justin #define RUNNABLE_FLAG   0x00000001
     48  1.1  justin #define THREAD_MUSTJOIN 0x00000002
     49  1.1  justin #define THREAD_JOINED   0x00000004
     50  1.1  justin #define THREAD_EXTSTACK 0x00000008
     51  1.1  justin #define THREAD_TIMEDOUT 0x00000010
     52  1.1  justin 
     53  1.1  justin #define STACKSIZE 65536
     54  1.1  justin 
     55  1.1  justin /* used by experimental _lwp code */
     56  1.1  justin void schedule(void);
     57  1.1  justin void wake(struct thread *thread);
     58  1.1  justin void block(struct thread *thread);
     59  1.1  justin struct thread *init_mainthread(void *);
     60  1.1  justin void exit_thread(void) __attribute__((noreturn));
     61  1.1  justin void set_sched_hook(void (*f)(void *, void *));
     62  1.1  justin int abssleep_real(uint64_t millisecs);
     63  1.1  justin struct thread* create_thread(const char *name, void *cookie,
     64  1.1  justin 			     void (*f)(void *), void *data,
     65  1.1  justin 			     void *stack, size_t stack_size);
     66  1.1  justin int is_runnable(struct thread *);
     67  1.1  justin void set_runnable(struct thread *);
     68  1.1  justin void clear_runnable(struct thread *);
     69  1.1  justin 
     70