most of the 2.X->3.0 commit (up to rev 4299) except for gtk2_ardour/editor_canvas...
[ardour.git] / libs / pbd / pbd / pthread_utils.h
1 /*
2     Copyright (C) 2000-2007 Paul Davis 
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 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 General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #ifndef __pbd_pthread_utils__
21 #define __pbd_pthread_utils__
22
23 #include <pthread.h>
24 #include <signal.h>
25 #include <string>
26 #include <stdint.h>
27
28 #include <sigc++/sigc++.h>
29
30 int  pthread_create_and_store (std::string name, pthread_t  *thread, pthread_attr_t *attr, void * (*start_routine)(void *), void * arg);
31 void pthread_cancel_one (pthread_t thread);
32 void pthread_kill_all (int signum);
33 void pthread_cancel_all ();
34 void pthread_exit_pbd (void* status);
35 std::string pthread_name ();
36
37 namespace PBD {
38         extern void notify_gui_about_thread_creation (pthread_t, std::string, int requests = 256);
39         extern void notify_gui_about_thread_exit (pthread_t);
40
41         extern sigc::signal<void,pthread_t>             ThreadLeaving;
42         extern sigc::signal<void,pthread_t,std::string,uint32_t> ThreadCreatedWithRequestSize;
43 }
44
45 #endif /* __pbd_pthread_utils__ */