/[svn]/liblscp/trunk/lscp/thread.h
ViewVC logotype

Annotation of /liblscp/trunk/lscp/thread.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 952 - (hide annotations) (download) (as text)
Tue Nov 28 22:46:32 2006 UTC (17 years, 4 months ago) by capela
File MIME type: text/x-c++hdr
File size: 3776 byte(s)
Code cleanup; preparations for 0.4.1 release (hopefully).

1 capela 103 // thread.h
2     //
3     /****************************************************************************
4     liblscp - LinuxSampler Control Protocol API
5 capela 869 Copyright (C) 2004-2006, rncbc aka Rui Nuno Capela. All rights reserved.
6 capela 103
7     This library is free software; you can redistribute it and/or
8     modify it under the terms of the GNU Lesser General Public
9     License as published by the Free Software Foundation; either
10     version 2.1 of the License, or (at your option) any later version.
11    
12     This library is distributed in the hope that it will be useful,
13     but WITHOUT ANY WARRANTY; without even the implied warranty of
14     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15     Lesser General Public License for more details.
16    
17 capela 921 You should have received a copy of the GNU General Public License along
18     with this program; if not, write to the Free Software Foundation, Inc.,
19     51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 capela 103
21     *****************************************************************************/
22    
23     #ifndef __LSCP_THREAD_H
24     #define __LSCP_THREAD_H
25    
26     #include <stdio.h>
27     #include <stdlib.h>
28     #include <string.h>
29    
30     #if (defined(_WIN32) || defined(__WIN32__))
31     #if (!defined(WIN32))
32     #define WIN32
33     #endif
34     #endif
35    
36     #if defined(WIN32)
37     #include <windows.h>
38     #else
39     #include <pthread.h>
40     #endif
41    
42     #include "lscp/version.h"
43    
44     #if defined(__cplusplus)
45     extern "C" {
46     #endif
47    
48     //-------------------------------------------------------------------------
49     // Status.
50    
51     typedef enum _lscp_status_t
52     {
53 capela 952 LSCP_OK = 0,
54     LSCP_FAILED = -1,
55     LSCP_ERROR = -2,
56     LSCP_WARNING = -3,
57     LSCP_TIMEOUT = -4,
58     LSCP_QUIT = -5
59 capela 103
60     } lscp_status_t;
61    
62     //-------------------------------------------------------------------------
63     // Mutexes.
64    
65     #if defined(WIN32)
66     typedef HANDLE lscp_mutex_t;
67     #define lscp_mutex_init(m) { (m) = CreateMutex(NULL, 0, NULL); }
68     #define lscp_mutex_destroy(m) if (m) { CloseHandle(m); }
69     #define lscp_mutex_lock(m) WaitForSingleObject((m), INFINITE)
70     #define lscp_mutex_unlock(m) ReleaseMutex(m)
71     #else
72     typedef pthread_mutex_t lscp_mutex_t;
73     #define lscp_mutex_init(m) pthread_mutex_init(&(m), NULL)
74     #define lscp_mutex_destroy(m) pthread_mutex_destroy(&(m))
75     #define lscp_mutex_lock(m) pthread_mutex_lock(&(m))
76     #define lscp_mutex_unlock(m) pthread_mutex_unlock(&(m))
77     #endif
78    
79     //-------------------------------------------------------------------------
80 capela 177 // Simple condition variables (FIXME: probably incorrect on WIN32).
81    
82     #if defined(WIN32)
83     typedef HANDLE lscp_cond_t;
84     #define lscp_cond_init(c) { (c) = CreateEvent(NULL, FALSE, FALSE, NULL); }
85     #define lscp_cond_destroy(c) if (c) { CloseHandle(c); }
86     #define lscp_cond_wait(c, m) { lscp_mutex_unlock(m); WaitForSingleObject((c), INFINITE); lscp_mutex_lock(m); }
87     #define lscp_cond_signal(c) SetEvent(c)
88     #else
89     typedef pthread_cond_t lscp_cond_t;
90     #define lscp_cond_init(c) pthread_cond_init(&(c), NULL)
91     #define lscp_cond_destroy(c) pthread_cond_destroy(&(c))
92     #define lscp_cond_wait(c, m) pthread_cond_wait(&(c), &(m))
93     #define lscp_cond_signal(c) pthread_cond_signal(&(c))
94     #endif
95    
96     //-------------------------------------------------------------------------
97 capela 103 // Threads.
98    
99     struct _lscp_thread_t;
100    
101     typedef void (*lscp_thread_proc_t)(void *pvData);
102    
103     typedef struct _lscp_thread_t lscp_thread_t;
104    
105     lscp_thread_t *lscp_thread_create (lscp_thread_proc_t pfnProc, void *pvData, int iDetach);
106     lscp_status_t lscp_thread_join (lscp_thread_t *pThread);
107     lscp_status_t lscp_thread_cancel (lscp_thread_t *pThread);
108     lscp_status_t lscp_thread_destroy (lscp_thread_t *pThread);
109    
110     #if defined(WIN32)
111 capela 869 #define lscp_thread_exit() ExitThread(0)
112     #else
113 capela 103 #define lscp_thread_exit() pthread_exit(NULL)
114     #endif
115    
116     #if defined(__cplusplus)
117     }
118     #endif
119    
120     #endif // __LSCP_THREAD_H
121    
122     // end of thread.h

  ViewVC Help
Powered by ViewVC