JACK-AUDIO-CONNECTION-KIT
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/systemdeps.h>
29 #include <jack/weakmacros.h>
30 #include <jack/types.h>
31 
32 /* use 512KB stack per thread - the default is way too high to be feasible
33  * with mlockall() on many systems */
34 #define THREAD_STACK 524288
35 
55 
63 
74 int jack_acquire_real_time_scheduling (jack_native_thread_t thread, int priority) JACK_OPTIONAL_WEAK_EXPORT;
75 
93  jack_native_thread_t *thread,
94  int priority,
95  int realtime, /* boolean */
96  void *(*start_routine)(void*),
97  void *arg) JACK_OPTIONAL_WEAK_EXPORT;
98 
107 
108 typedef int (*jack_thread_creator_t)(jack_native_thread_t*,
109  const pthread_attr_t*,
110  void* (*function)(void*),
111  void* arg) JACK_OPTIONAL_WEAK_EXPORT;
130 
131 /* @} */
132 
133 #ifdef __cplusplus
134 }
135 #endif
136 
137 #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:108
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
struct _jack_client jack_client_t
Definition: types.h:89
#define JACK_OPTIONAL_WEAK_EXPORT
Definition: weakmacros.h:56