jack2 codebase
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

85 lines
2.5KB

  1. /*
  2. Copyright (C) 2004-2008 Grame
  3. This program is free software; you can redistribute it and/or modify
  4. it under the terms of the GNU Lesser General Public License as published by
  5. the Free Software Foundation; either version 2.1 of the License, or
  6. (at your option) any later version.
  7. This program is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. GNU Lesser General Public License for more details.
  11. You should have received a copy of the GNU Lesser General Public License
  12. along with this program; if not, write to the Free Software
  13. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  14. */
  15. #ifndef __JackPlatformPlug_sun__
  16. #define __JackPlatformPlug_sun__
  17. #define jack_server_dir "/tmp"
  18. #define jack_client_dir "/tmp"
  19. #define JACK_DEFAULT_DRIVER "oss"
  20. namespace Jack
  21. {
  22. struct JackRequest;
  23. struct JackResult;
  24. class JackPosixMutex;
  25. class JackPosixThread;
  26. class JackFifo;
  27. class JackSocketServerChannel;
  28. class JackSocketClientChannel;
  29. class JackSocketServerNotifyChannel;
  30. class JackSocketNotifyChannel;
  31. class JackClientSocket;
  32. class JackNetUnixSocket;
  33. }
  34. /* __JackPlatformMutex__ */
  35. #include "JackPosixMutex.h"
  36. namespace Jack {typedef JackPosixMutex JackMutex; }
  37. /* __JackPlatformThread__ */
  38. #include "JackPosixThread.h"
  39. namespace Jack { typedef JackPosixThread JackThread; }
  40. /* __JackPlatformSynchro__ client activation */
  41. #include "JackFifo.h"
  42. namespace Jack { typedef JackFifo JackSynchro; }
  43. /* __JackPlatformChannelTransaction__ */
  44. #include "JackSocket.h"
  45. namespace Jack { typedef JackClientSocket JackChannelTransaction; }
  46. /* __JackPlatformProcessSync__ */
  47. #include "JackPosixProcessSync.h"
  48. namespace Jack { typedef JackPosixProcessSync JackProcessSync; }
  49. /* __JackPlatformServerChannel__ */
  50. #include "JackSocketServerChannel.h"
  51. namespace Jack { typedef JackSocketServerChannel JackServerChannel; }
  52. /* __JackPlatformClientChannel__ */
  53. #include "JackSocketClientChannel.h"
  54. namespace Jack { typedef JackSocketClientChannel JackClientChannel; }
  55. /* __JackPlatformServerNotifyChannel__ */
  56. #include "JackSocketServerNotifyChannel.h"
  57. namespace Jack { typedef JackSocketServerNotifyChannel JackServerNotifyChannel; }
  58. /* __JackPlatformNotifyChannel__ */
  59. #include "JackSocketNotifyChannel.h"
  60. namespace Jack { typedef JackSocketNotifyChannel JackNotifyChannel; }
  61. /* __JackPlatformNetSocket__ */
  62. #include "JackNetUnixSocket.h"
  63. namespace Jack { typedef JackNetUnixSocket JackNetSocket; }
  64. #endif