weakjack.h stuff backported from jack1.
[jack2.git] / solaris / JackPlatformPlug_os.h
bloba244010abc826b6acf9f20a159e9130c44f9a51f
1 /*
2 Copyright (C) 2004-2008 Grame
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.
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.
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.
20 #ifndef __JackPlatformPlug_sun__
21 #define __JackPlatformPlug_sun__
23 namespace Jack
25 struct JackRequest;
26 struct JackResult;
28 class JackPosixMutex;
29 class JackPosixThread;
30 class JackFifo;
32 class JackSocketServerChannel;
33 class JackSocketClientChannel;
34 class JackSocketServerNotifyChannel;
35 class JackSocketNotifyChannel;
36 class JackClientSocket;
37 class JackNetUnixSocket;
40 /* __JackPlatformMutex__ */
41 #include "JackPosixMutex.h"
42 namespace Jack {typedef JackPosixMutex JackMutex; }
44 /* __JackPlatformThread__ */
45 #include "JackPosixThread.h"
46 namespace Jack { typedef JackPosixThread JackThread; }
48 /* __JackPlatformSynchro__ client activation */
49 #include "JackFifo.h"
50 namespace Jack { typedef JackFifo JackSynchro; }
52 /* __JackPlatformChannelTransaction__ */
53 #include "JackSocket.h"
54 namespace Jack { typedef JackClientSocket JackChannelTransaction; }
56 #include "JackProcessSync.h"
57 /* __JackPlatformProcessSync__ */
58 /* Only on windows a special JackProcessSync is used. It is directly defined by including JackProcessSync.h here */
60 /* __JackPlatformServerChannel__ */
61 #include "JackSocketServerChannel.h"
62 namespace Jack { typedef JackSocketServerChannel JackServerChannel; }
64 /* __JackPlatformClientChannel__ */
65 #include "JackSocketClientChannel.h"
66 namespace Jack { typedef JackSocketClientChannel JackClientChannel; }
68 /* __JackPlatformServerNotifyChannel__ */
69 #include "JackSocketServerNotifyChannel.h"
70 namespace Jack { typedef JackSocketServerNotifyChannel JackServerNotifyChannel; }
72 /* __JackPlatformNotifyChannel__ */
73 #include "JackSocketNotifyChannel.h"
74 namespace Jack { typedef JackSocketNotifyChannel JackNotifyChannel; }
76 /* __JackPlatformNetSocket__ */
77 #include "JackNetUnixSocket.h"
78 namespace Jack { typedef JackNetUnixSocket JackNetSocket; }
80 #endif