JACK-AUDIO-CONNECTION-KIT 0.125.0rc1
thread.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2004 Paul Davis
3
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU Lesser General Public License as published by
6 the Free Software Foundation; either version 2.1 of the License, or
7 (at your option) any later version.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU Lesser General Public License for more details.
13
14 You should have received a copy of the GNU Lesser General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17
18*/
19
20#ifndef __jack_thread_h__
21#define __jack_thread_h__
22
23#ifdef __cplusplus
24extern "C" {
25#endif
26
27#include <pthread.h>
28#include <jack/weakmacros.h>
29#include <jack/types.h>
30
31/* use 512KB stack per thread - the default is way too high to be feasible
32 * with mlockall() on many systems */
33#define THREAD_STACK 524288
34
53int jack_client_real_time_priority (jack_client_t*) JACK_OPTIONAL_WEAK_EXPORT;
54
61int jack_client_max_real_time_priority (jack_client_t*) JACK_OPTIONAL_WEAK_EXPORT;
62
73int jack_acquire_real_time_scheduling (jack_native_thread_t thread, int priority) JACK_OPTIONAL_WEAK_EXPORT;
74
93 int priority,
94 int realtime, /* boolean */
95 void *(*start_routine)(void*),
96 void *arg) JACK_OPTIONAL_WEAK_EXPORT;
97
105int jack_drop_real_time_scheduling (jack_native_thread_t thread) JACK_OPTIONAL_WEAK_EXPORT;
106
108 const pthread_attr_t*,
109 void* (*function)(void*),
110 void* arg) JACK_OPTIONAL_WEAK_EXPORT;
128void jack_set_thread_creator (jack_thread_creator_t creator) JACK_OPTIONAL_WEAK_EXPORT;
129
130/* @} */
131
132#ifdef __cplusplus
133}
134#endif
135
136#endif /* __jack_thread_h__ */
int jack_drop_real_time_scheduling(jack_native_thread_t thread) JACK_OPTIONAL_WEAK_EXPORT
void jack_set_thread_creator(jack_thread_creator_t creator) JACK_OPTIONAL_WEAK_EXPORT
int(* jack_thread_creator_t)(jack_native_thread_t *, const pthread_attr_t *, void *(*function)(void *), void *arg) JACK_OPTIONAL_WEAK_EXPORT
Definition thread.h:107
int jack_client_real_time_priority(jack_client_t *) JACK_OPTIONAL_WEAK_EXPORT
int jack_client_create_thread(jack_client_t *client, jack_native_thread_t *thread, int priority, int realtime, void *(*start_routine)(void *), void *arg) JACK_OPTIONAL_WEAK_EXPORT
int jack_client_max_real_time_priority(jack_client_t *) JACK_OPTIONAL_WEAK_EXPORT
int jack_acquire_real_time_scheduling(jack_native_thread_t thread, int priority) JACK_OPTIONAL_WEAK_EXPORT
jack_client_t * client
Definition simple_client.c:17
struct _jack_client jack_client_t
Definition types.h:89
pthread_t jack_native_thread_t
Definition types.h:102