pthread_md.h revision 113656
1113656Sdeischen/*-
2113656Sdeischen * Copyright (c) 2002 Daniel Eischen <deischen@freebsd.org>.
3113656Sdeischen * All rights reserved.
4113656Sdeischen *
5113656Sdeischen * Redistribution and use in source and binary forms, with or without
6113656Sdeischen * modification, are permitted provided that the following conditions
7113656Sdeischen * are met:
8113656Sdeischen * 1. Redistributions of source code must retain the above copyright
9113656Sdeischen *    notice, this list of conditions and the following disclaimer.
10113656Sdeischen * 2. Redistributions in binary form must reproduce the above copyright
11113656Sdeischen *    notice, this list of conditions and the following disclaimer in the
12113656Sdeischen *    documentation and/or other materials provided with the distribution.
13113656Sdeischen *
14113656Sdeischen * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15113656Sdeischen * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16113656Sdeischen * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17113656Sdeischen * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18113656Sdeischen * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19113656Sdeischen * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20113656Sdeischen * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21113656Sdeischen * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22113656Sdeischen * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23113656Sdeischen * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24113656Sdeischen * SUCH DAMAGE.
25113656Sdeischen *
26113656Sdeischen * $FreeBSD: head/lib/libkse/arch/i386/include/pthread_md.h 113656 2003-04-18 05:00:52Z deischen $
27113656Sdeischen */
28113656Sdeischen/*
29113656Sdeischen * Machine-dependent thread prototypes/definitions for the thread kernel.
30113656Sdeischen */
31113656Sdeischen#ifndef _PTHREAD_MD_H_
32113656Sdeischen#define	_PTHREAD_MD_H_
33113656Sdeischen
34113656Sdeischen#include <sys/kse.h>
35113656Sdeischen#include <setjmp.h>
36113656Sdeischen#include <ucontext.h>
37113656Sdeischen
38113656Sdeischenextern int _thread_enter_uts(struct kse_thr_mailbox *, struct kse_mailbox *);
39113656Sdeischenextern int _thread_switch(struct kse_thr_mailbox *, struct kse_thr_mailbox **);
40113656Sdeischenextern int _thr_setcontext(ucontext_t *);
41113656Sdeischenextern int _thr_getcontext(ucontext_t *);
42113656Sdeischen
43113656Sdeischen/*
44113656Sdeischen * These are needed to ensure an application doesn't attempt to jump
45113656Sdeischen * between stacks of different threads.  They return the stack of
46113656Sdeischen * jmp_buf, sigjmp_buf, and ucontext respectively.
47113656Sdeischen */
48113656Sdeischen#define	GET_STACK_JB(jb)	((unsigned long)((jb)[0]._jb[2]))
49113656Sdeischen#define	GET_STACK_SJB(sjb)	((unsigned long)((sjb)[0]._sjb[2]))
50113656Sdeischen#define	GET_STACK_UC(ucp)	((unsigned long)((ucp)->uc_mcontext.mc_esp))
51113656Sdeischen
52113656Sdeischen#define	THR_GETCONTEXT(ucp)	_thr_getcontext(ucp)
53113656Sdeischen#define	THR_SETCONTEXT(ucp)	_thr_setcontext(ucp)
54113656Sdeischen#endif
55