Timeline: Fix graphics corruption. Also, indicate loop point by modifying waveform...
[nondaw.git] / nonlib / Thread.H
bloba264d2050d787a444cc3bfce5502e04676e0070d
2 /*******************************************************************************/
3 /* Copyright (C) 2008 Jonathan Moore Liles                                     */
4 /*                                                                             */
5 /* This program is free software; you can redistribute it and/or modify it     */
6 /* under the terms of the GNU General Public License as published by the       */
7 /* Free Software Foundation; either version 2 of the License, or (at your      */
8 /* option) any later version.                                                  */
9 /*                                                                             */
10 /* This program is distributed in the hope that it will be useful, but WITHOUT */
11 /* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or       */
12 /* FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for   */
13 /* more details.                                                               */
14 /*                                                                             */
15 /* You should have received a copy of the GNU General Public License along     */
16 /* with This program; see the file COPYING.  If not,write to the Free Software */
17 /* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
18 /*******************************************************************************/
20 #pragma once
22 /* simple wrapper for pthreads with thread role checking */
23 #include <pthread.h>
25 #define THREAD_ASSERT( n ) ASSERT( Thread::is( #n ), "Function called from wrong thread! (is %s, should be %s)", Thread::current()->name(), #n )
27 class Thread
29     static pthread_key_t _current;
31     pthread_t _thread;
32     const char * _name;
34     static void * run_thread ( void *arg );
36 public:
38     static bool is ( const char *name );
40     static void init ( void );
41     static Thread *current ( void );
43     Thread ( );
44     Thread ( const char *name );
46     const char *name ( void ) const { return _name; }
47     void name ( const char *name ) { _name = name; }
49     bool running ( void ) const { return _thread; }
50     void set ( const char *name );
51     void set ( void ) { set( _name ); }
52     bool clone ( void *(*entry_point)(void *), void *arg );
53     void detach ( void );
54     void join ( void );