JACK-AUDIO-CONNECTION-KIT  0.121.3
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
24 extern "C" {
25 #endif
26 
27 #include <pthread.h>
28 #include <jack/weakmacros.h>
29 
30 /* use 512KB stack per thread - the default is way too high to be feasible
31  * with mlockall() on many systems */
32 #define THREAD_STACK 524288
33 
52 int jack_client_real_time_priority (jack_client_t*) JACK_OPTIONAL_WEAK_EXPORT;
53 
60 int jack_client_max_real_time_priority (jack_client_t*) JACK_OPTIONAL_WEAK_EXPORT;
61 
72 int jack_acquire_real_time_scheduling (jack_native_thread_t thread, int priority) JACK_OPTIONAL_WEAK_EXPORT;
73 
91  jack_native_thread_t *thread,
92  int priority,
93  int realtime, /* boolean */
94  void *(*start_routine)(void*),
95  void *arg) JACK_OPTIONAL_WEAK_EXPORT;
96 
104 int jack_drop_real_time_scheduling (jack_native_thread_t thread) JACK_OPTIONAL_WEAK_EXPORT;
105 
107  const pthread_attr_t*,
108  void* (*function)(void*),
109  void* arg) JACK_OPTIONAL_WEAK_EXPORT;
127 void jack_set_thread_creator (jack_thread_creator_t creator) JACK_OPTIONAL_WEAK_EXPORT;
128 
129 /* @} */
130 
131 #ifdef __cplusplus
132 }
133 #endif
134 
135 #endif /* __jack_thread_h__ */
136