Merge branch 'master' into port_register_notification_defer
[jack2.git] / macosx / JackPlatformPlug_os.h
blobc52a259f2b94e0eb7bfb0d15d38ecac47f245573
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_APPLE__
21 #define __JackPlatformPlug_APPLE__
23 namespace Jack
25 class JackPosixMutex;
26 class JackMachThread;
27 class JackMachSemaphore;
29 class JackMachServerChannel;
30 class JackMachClientChannel;
31 class JackMachServerNotifyChannel;
32 class JackMachNotifyChannel;
33 class JackNetUnixSocket;
36 /* __JackPlatformMutex__ */
37 #include "JackPosixMutex.h"
38 namespace Jack { typedef JackPosixMutex JackMutex; }
40 /* __JackPlatformThread__ */
41 #include "JackMachThread.h"
42 namespace Jack { typedef JackMachThread JackThread; }
44 /* __JackPlatformSynchro__ client activation */
45 #include "JackMachSemaphore.h"
46 namespace Jack { typedef JackMachSemaphore JackSynchro; }
48 /* __JackPlatformProcessSync__ */
49 #include "JackProcessSync.h"
50 /* Only on windows a special JackProcessSync is used. It is directly defined by including JackProcessSync.h here */
52 /* __JackPlatformServerChannel__ */
53 #include "JackMachServerChannel.h"
54 namespace Jack { typedef JackMachServerChannel JackServerChannel; }
56 /* __JackPlatformClientChannel__ */
57 #include "JackMachClientChannel.h"
58 namespace Jack { typedef JackMachClientChannel JackClientChannel; }
60 /* __JackPlatformServerNotifyChannel__ */
61 #include "JackMachServerNotifyChannel.h"
62 namespace Jack { typedef JackMachServerNotifyChannel JackServerNotifyChannel; }
64 /* __JackPlatformNotifyChannel__ */
65 #include "JackMachNotifyChannel.h"
66 namespace Jack { typedef JackMachNotifyChannel JackNotifyChannel; }
68 /* __JackPlatformNetSocket__ */
69 #include "JackNetUnixSocket.h"
70 namespace Jack { typedef JackNetUnixSocket JackNetSocket; }
72 #endif