Browse Source

Cleanup include

git-svn-id: http://subversion.jackaudio.org/jack/jack2/trunk/jackmp@2531 0c269be4-1314-0410-8aa9-9f06e86f4224
tags/1.90
sletz 17 years ago
parent
commit
059eb21dcb
16 changed files with 13 additions and 18 deletions
  1. +0
    -1
      common/JackError.h
  2. +1
    -0
      common/JackFifo.cpp
  3. +0
    -1
      common/JackFifo.h
  4. +1
    -0
      common/JackPosixSemaphore.cpp
  5. +0
    -1
      common/JackPosixSemaphore.h
  6. +1
    -1
      common/JackRequest.h
  7. +1
    -1
      common/JackServerGlobals.cpp
  8. +1
    -0
      common/JackSocket.cpp
  9. +3
    -4
      common/JackSocket.h
  10. +1
    -0
      common/JackSocketServerChannel.cpp
  11. +2
    -2
      common/JackTools.cpp
  12. +1
    -0
      windows/JackWinEvent.cpp
  13. +1
    -3
      windows/JackWinEvent.h
  14. +0
    -2
      windows/JackWinNamedPipe.h
  15. +0
    -1
      windows/JackWinNamedPipeServerChannel.h
  16. +0
    -1
      windows/JackWinSemaphore.h

+ 0
- 1
common/JackError.h View File

@@ -25,7 +25,6 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.


#include <string.h> #include <string.h>
#include <errno.h> #include <errno.h>
#include <stdio.h>
#include "JackExports.h" #include "JackExports.h"
#include "types.h" #include "types.h"




+ 1
- 0
common/JackFifo.cpp View File

@@ -28,6 +28,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#include <sys/stat.h> #include <sys/stat.h>
#include <unistd.h> #include <unistd.h>
#include <fcntl.h> #include <fcntl.h>
#include <stdio.h>


namespace Jack namespace Jack
{ {


+ 0
- 1
common/JackFifo.h View File

@@ -23,7 +23,6 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#include "JackSynchro.h" #include "JackSynchro.h"
#include "JackExports.h" #include "JackExports.h"
#include <assert.h> #include <assert.h>
#include <stdio.h>
#include <poll.h> #include <poll.h>


namespace Jack namespace Jack


+ 1
- 0
common/JackPosixSemaphore.cpp View File

@@ -25,6 +25,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#include "JackConstants.h" #include "JackConstants.h"
#include "JackError.h" #include "JackError.h"
#include <fcntl.h> #include <fcntl.h>
#include <stdio.h>
#include <sys/time.h> #include <sys/time.h>


namespace Jack namespace Jack


+ 0
- 1
common/JackPosixSemaphore.h View File

@@ -24,7 +24,6 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#include "JackExports.h" #include "JackExports.h"
#include <semaphore.h> #include <semaphore.h>
#include <time.h> #include <time.h>
#include <stdio.h>
#include <assert.h> #include <assert.h>


namespace Jack namespace Jack


+ 1
- 1
common/JackRequest.h View File

@@ -23,8 +23,8 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.


#include "JackConstants.h" #include "JackConstants.h"
#include "JackPlatformChannelTransaction.h" #include "JackPlatformChannelTransaction.h"
#include <stdio.h>
#include <string.h> #include <string.h>
#include <stdio.h>


namespace Jack namespace Jack
{ {


+ 1
- 1
common/JackServerGlobals.cpp View File

@@ -29,7 +29,7 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
#include "JackTools.h" #include "JackTools.h"
#include "shm.h" #include "shm.h"
#include <getopt.h> #include <getopt.h>
#include <stdio.h>
//#include <stdio.h>
#include <errno.h> #include <errno.h>


static char* server_name = NULL; static char* server_name = NULL;


+ 1
- 0
common/JackSocket.cpp View File

@@ -24,6 +24,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#include "JackSocket.h" #include "JackSocket.h"
#include "JackError.h" #include "JackError.h"
#include <string.h> #include <string.h>
#include <stdio.h>


namespace Jack namespace Jack
{ {


+ 3
- 4
common/JackSocket.h View File

@@ -28,10 +28,9 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#include <arpa/inet.h> #include <arpa/inet.h>
#include <errno.h> #include <errno.h>
#include <unistd.h> #include <unistd.h>
#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
//#include <signal.h>
//#include <stdlib.h>
//#include <string.h>


namespace Jack namespace Jack
{ {


+ 1
- 0
common/JackSocketServerChannel.cpp View File

@@ -29,6 +29,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#include "JackClient.h" #include "JackClient.h"
#include "JackNotification.h" #include "JackNotification.h"
#include <assert.h> #include <assert.h>
#include <signal.h>


using namespace std; using namespace std;




+ 2
- 2
common/JackTools.cpp View File

@@ -21,16 +21,16 @@
#include "config.h" #include "config.h"
#endif #endif


#include "JackConstants.h"
#include "JackTools.h" #include "JackTools.h"
#include "JackError.h" #include "JackError.h"
#include <stdlib.h> #include <stdlib.h>
#include <stdio.h>


#ifdef WIN32 #ifdef WIN32
#include <process.h> #include <process.h>
#endif #endif


#include "JackConstants.h"

namespace Jack namespace Jack
{ {




+ 1
- 0
windows/JackWinEvent.cpp View File

@@ -23,6 +23,7 @@ This program is free software; you can redistribute it and/or modify


#include "JackWinEvent.h" #include "JackWinEvent.h"
#include "JackError.h" #include "JackError.h"
#include <assert.h>


// http://www.codeproject.com/win32/Win32_Event_Handling.asp // http://www.codeproject.com/win32/Win32_Event_Handling.asp
// http://www.codeproject.com/threads/Synchronization.asp // http://www.codeproject.com/threads/Synchronization.asp


+ 1
- 3
windows/JackWinEvent.h View File

@@ -22,13 +22,11 @@ This program is free software; you can redistribute it and/or modify


#include "JackSynchro.h" #include "JackSynchro.h"
#include <windows.h> #include <windows.h>
#include <stdio.h>
#include <assert.h>


namespace Jack namespace Jack
{ {


//http://bob.developpez.com/tutapiwin/article_56.php
// http://bob.developpez.com/tutapiwin/article_56.php


/*! /*!
\brief Inter process synchronization using system wide events. \brief Inter process synchronization using system wide events.


+ 0
- 2
windows/JackWinNamedPipe.h View File

@@ -20,8 +20,6 @@ This program is free software; you can redistribute it and/or modify
#ifndef __JackWinNamedPipe__ #ifndef __JackWinNamedPipe__
#define __JackWinNamedPipe__ #define __JackWinNamedPipe__


#include <assert.h>
#include <stdio.h>
#include <windows.h> #include <windows.h>


namespace Jack namespace Jack


+ 0
- 1
windows/JackWinNamedPipeServerChannel.h View File

@@ -23,7 +23,6 @@ Copyright (C) 2004-2006 Grame
#include "JackChannel.h" #include "JackChannel.h"
#include "JackWinNamedPipe.h" #include "JackWinNamedPipe.h"
#include "JackPlatformThread.h" #include "JackPlatformThread.h"
#include <map>
#include <list> #include <list>


namespace Jack namespace Jack


+ 0
- 1
windows/JackWinSemaphore.h View File

@@ -22,7 +22,6 @@ This program is free software; you can redistribute it and/or modify


#include "JackSynchro.h" #include "JackSynchro.h"
#include <windows.h> #include <windows.h>
#include <stdio.h>
#include <assert.h> #include <assert.h>


namespace Jack namespace Jack


Loading…
Cancel
Save