117706Sjulian/*
235123Sjb * Copyright (c) 1996-98 John Birrell <jb@cimlogic.com.au>.
317706Sjulian * All rights reserved.
417706Sjulian *
517706Sjulian * Redistribution and use in source and binary forms, with or without
617706Sjulian * modification, are permitted provided that the following conditions
717706Sjulian * are met:
817706Sjulian * 1. Redistributions of source code must retain the above copyright
917706Sjulian *    notice, this list of conditions and the following disclaimer.
1017706Sjulian * 2. Redistributions in binary form must reproduce the above copyright
1117706Sjulian *    notice, this list of conditions and the following disclaimer in the
1217706Sjulian *    documentation and/or other materials provided with the distribution.
13173127Simp * 3. Neither the name of the author nor the names of any co-contributors
1417706Sjulian *    may be used to endorse or promote products derived from this software
1517706Sjulian *    without specific prior written permission.
1617706Sjulian *
1717706Sjulian * THIS SOFTWARE IS PROVIDED BY JOHN BIRRELL AND CONTRIBUTORS ``AS IS'' AND
1817706Sjulian * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1917706Sjulian * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2017706Sjulian * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
2117706Sjulian * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2217706Sjulian * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2317706Sjulian * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2417706Sjulian * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2517706Sjulian * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2617706Sjulian * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2717706Sjulian * SUCH DAMAGE.
2817706Sjulian *
2974462Salfred * $FreeBSD$
3017706Sjulian */
3117706Sjulian#ifndef _PTHREAD_NP_H_
3217706Sjulian#define _PTHREAD_NP_H_
3317706Sjulian
34176760Sdavidxu#include <sys/param.h>
35176760Sdavidxu#include <sys/cpuset.h>
36176760Sdavidxu
3717706Sjulian/*
3844965Sjb * Non-POSIX type definitions:
3944965Sjb */
4093032Simptypedef void	(*pthread_switch_routine_t)(pthread_t, pthread_t);
4144965Sjb
4244965Sjb/*
4317706Sjulian * Non-POSIX thread function prototype definitions:
4417706Sjulian */
4517706Sjulian__BEGIN_DECLS
4693032Simpint pthread_attr_setcreatesuspend_np(pthread_attr_t *);
47108898Sfjoeint pthread_attr_get_np(pthread_t, pthread_attr_t *);
48176760Sdavidxuint pthread_attr_getaffinity_np(const pthread_attr_t *, size_t, cpuset_t *);
49176760Sdavidxuint pthread_attr_setaffinity_np(pthread_attr_t *, size_t, const cpuset_t *);
50176760Sdavidxuint pthread_getaffinity_np(pthread_t, size_t, cpuset_t *);
51218414Sjkimint pthread_getthreadid_np(void);
5297206Sdeischenint pthread_main_np(void);
5393032Simpint pthread_multi_np(void);
5497206Sdeischenint pthread_mutexattr_getkind_np(pthread_mutexattr_t);
5597206Sdeischenint pthread_mutexattr_setkind_np(pthread_mutexattr_t *, int);
56105727Sfjoevoid pthread_resume_all_np(void);
5793032Simpint pthread_resume_np(pthread_t);
5897206Sdeischenvoid pthread_set_name_np(pthread_t, const char *);
59174585Sdavidxuint pthread_mutex_getspinloops_np(pthread_mutex_t *mutex, int *count);
60174585Sdavidxuint pthread_mutex_setspinloops_np(pthread_mutex_t *mutex, int count);
61174585Sdavidxuint pthread_mutex_getyieldloops_np(pthread_mutex_t *mutex, int *count);
62174585Sdavidxuint pthread_mutex_setyieldloops_np(pthread_mutex_t *mutex, int count);
63176049Sdesint pthread_mutex_isowned_np(pthread_mutex_t *mutex);
64176760Sdavidxuint pthread_setaffinity_np(pthread_t, size_t, const cpuset_t *);
6593032Simpint pthread_single_np(void);
66105727Sfjoevoid pthread_suspend_all_np(void);
6793032Simpint pthread_suspend_np(pthread_t);
6893032Simpint pthread_switch_add_np(pthread_switch_routine_t);
6993032Simpint pthread_switch_delete_np(pthread_switch_routine_t);
70150902Sdavidxuint pthread_timedjoin_np(pthread_t, void **, const struct timespec *);
7117706Sjulian__END_DECLS
7217706Sjulian
7317706Sjulian#endif
74