Merge pull request #23 from jackaudio/device_reservation_fixes
[jack2.git] / linux / JackPlatformPlug_os.h
blobb480f453af75d2a28df98f18d927517c6a56fded
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_linux__
21 #define __JackPlatformPlug_linux__
23 #define jack_server_dir "/dev/shm"
24 #define jack_client_dir "/dev/shm"
25 #define JACK_DEFAULT_DRIVER "alsa"
27 namespace Jack
29 struct JackRequest;
30 struct JackResult;
32 class JackPosixMutex;
33 class JackPosixThread;
34 class JackFifo;
35 class JackSocketServerChannel;
36 class JackSocketClientChannel;
37 class JackSocketServerNotifyChannel;
38 class JackSocketNotifyChannel;
39 class JackClientSocket;
40 class JackNetUnixSocket;
43 /* __JackPlatformMutex__ */
44 #include "JackPosixMutex.h"
45 namespace Jack {typedef JackPosixMutex JackMutex; }
47 /* __JackPlatformThread__ */
48 #include "JackPosixThread.h"
49 namespace Jack { typedef JackPosixThread JackThread; }
51 /* __JackPlatformSynchro__ client activation */
53 #include "JackFifo.h"
54 namespace Jack { typedef JackFifo JackSynchro; }
57 #include "JackPosixSemaphore.h"
58 namespace Jack { typedef JackPosixSemaphore JackSynchro; }
60 /* __JackPlatformChannelTransaction__ */
62 #include "JackSocket.h"
63 namespace Jack { typedef JackClientSocket JackChannelTransaction; }
66 /* __JackPlatformProcessSync__ */
67 #include "JackPosixProcessSync.h"
68 namespace Jack { typedef JackPosixProcessSync JackProcessSync; }
70 /* __JackPlatformServerChannel__ */
71 #include "JackSocketServerChannel.h"
72 namespace Jack { typedef JackSocketServerChannel JackServerChannel; }
74 /* __JackPlatformClientChannel__ */
75 #include "JackSocketClientChannel.h"
76 namespace Jack { typedef JackSocketClientChannel JackClientChannel; }
78 /* __JackPlatformServerNotifyChannel__ */
79 #include "JackSocketServerNotifyChannel.h"
80 namespace Jack { typedef JackSocketServerNotifyChannel JackServerNotifyChannel; }
82 /* __JackPlatformNotifyChannel__ */
83 #include "JackSocketNotifyChannel.h"
84 namespace Jack { typedef JackSocketNotifyChannel JackNotifyChannel; }
86 /* __JackPlatformNetSocket__ */
87 #include "JackNetUnixSocket.h"
88 namespace Jack { typedef JackNetUnixSocket JackNetSocket; }
90 #endif