NetBSD/sys/sys/savar.h

121 lines
4.1 KiB
C

/* $NetBSD: savar.h,v 1.4 2003/02/02 02:22:14 christos Exp $ */
/*-
* Copyright (c) 2001 The NetBSD Foundation, Inc.
* All rights reserved.
*
* This code is derived from software contributed to The NetBSD Foundation
* by Nathan J. Williams.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by the NetBSD
* Foundation, Inc. and its contributors.
* 4. Neither the name of The NetBSD Foundation nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
/*
* Internal data usd by the scheduler activation implementation
*/
#ifndef _SYS_SAVAR_H
#define _SYS_SAVAR_H
#include <sys/lock.h>
#include <sys/queue.h>
struct sadata_upcall {
SIMPLEQ_ENTRY(sadata_upcall) sau_next;
int sau_flags;
int sau_type;
size_t sau_argsize;
void *sau_arg;
stack_t sau_stack;
union {
struct {
ucontext_t e_ctx;
ucontext_t i_ctx;
struct sa_t e_sa;
struct sa_t i_sa;
} captured;
struct {
struct lwp *e_lwp;
struct lwp *i_lwp;
} deferred;
} sau_state;
};
#define SAU_FLAG_DEFERRED 0x1
#define SA_UPCALL_DEFER 0x1000
struct sadata {
struct simplelock sa_lock; /* lock on these fields */
int sa_flag; /* SA_* flags */
sa_upcall_t sa_upcall; /* upcall entry point */
struct lwp *sa_vp; /* "virtual processor" allocation */
struct lwp *sa_woken; /* list of woken lwps */
struct lwp *sa_idle; /* lwp in sawait */
int sa_concurrency; /* desired concurrency */
LIST_HEAD(, lwp) sa_lwpcache; /* list of avaliable lwps */
int sa_ncached; /* list length */
stack_t *sa_stacks; /* pointer to array of upcall stacks */
int sa_nstacks; /* number of valid stacks */
SIMPLEQ_HEAD(, sadata_upcall) sa_upcalls; /* pending upcalls */
};
#define SA_FLAG_ALL SA_FLAG_PREEMPT
extern struct pool sadata_pool; /* memory pool for sadata structures */
extern struct pool saupcall_pool; /* memory pool for pending upcalls */
#ifdef _KERNEL
#include <sys/mallocvar.h>
MALLOC_DECLARE(M_SA);
#endif
#define SA_NUMSTACKS 16 /* Number of stacks allocated. XXX */
struct sadata_upcall *sadata_upcall_alloc(int);
void sadata_upcall_free(struct sadata_upcall *);
void sa_switch(struct lwp *, int);
void sa_preempt(struct lwp *);
void sa_yield(struct lwp *);
void sa_switchcall(void *);
void sa_yieldcall(void *);
int sa_upcall(struct lwp *, int, struct lwp *, struct lwp *, size_t, void *);
int sa_upcall0(struct lwp *, int, struct lwp *, struct lwp *,
size_t, void *, struct sadata_upcall *, stack_t *);
void sa_putcachelwp(struct proc *, struct lwp *);
struct lwp *sa_getcachelwp(struct proc *);
void sa_upcall_userret(struct lwp *);
void cpu_upcall(struct lwp *, int, int, int, void *, void *, void *, sa_upcall_t);
#endif /* !_SYS_SAVAR_H */