Browse Source

#include changes to reflect separation of public and private headers

tags/0.124.0
Paul Davis 14 years ago
parent
commit
d094819df4
57 changed files with 151 additions and 130 deletions
  1. +1
    -1
      config/os/generic/sanitycheck.c
  2. +2
    -2
      config/os/gnu-linux/sanitycheck.c
  3. +1
    -1
      config/os/gnu-linux/systemtest.c
  4. +3
    -3
      config/os/macosx/ipc.h
  5. +2
    -1
      configure.ac
  6. +1
    -1
      drivers/alsa-midi/alsa_midi.h
  7. +1
    -1
      drivers/alsa-midi/alsa_rawmidi.c
  8. +1
    -1
      drivers/alsa-midi/alsa_seqmidi.c
  9. +1
    -1
      drivers/alsa-midi/midi_pack.h
  10. +1
    -1
      drivers/alsa-midi/midi_unpack.h
  11. +3
    -3
      drivers/alsa/alsa_driver.c
  12. +5
    -5
      drivers/alsa/alsa_driver.h
  13. +1
    -1
      drivers/alsa/generic_hw.c
  14. +2
    -2
      drivers/alsa/hammerfall.c
  15. +2
    -2
      drivers/alsa/hdsp.c
  16. +2
    -2
      drivers/alsa/ice1712.c
  17. +1
    -1
      drivers/alsa/memops.c
  18. +4
    -4
      drivers/alsa/usx2y.c
  19. +2
    -1
      drivers/coreaudio/coreaudio_driver.c
  20. +5
    -4
      drivers/coreaudio/coreaudio_driver.h
  21. +2
    -2
      drivers/dummy/dummy_driver.c
  22. +1
    -1
      drivers/dummy/dummy_driver.h
  23. +2
    -2
      drivers/firewire/ffado_driver.c
  24. +4
    -4
      drivers/firewire/ffado_driver.h
  25. +3
    -2
      drivers/freebob/freebob_driver.h
  26. +1
    -1
      drivers/netjack/net_driver.c
  27. +2
    -1
      drivers/netjack/net_driver.h
  28. +1
    -1
      drivers/netjack/netjack.c
  29. +0
    -1
      drivers/netjack/netjack.h
  30. +1
    -1
      drivers/netjack/netjack_packet.c
  31. +0
    -1
      drivers/netjack/netjack_packet.h
  32. +4
    -2
      drivers/oss/oss_driver.c
  33. +2
    -1
      drivers/oss/oss_driver.h
  34. +1
    -1
      drivers/portaudio/portaudio_driver.c
  35. +6
    -5
      drivers/portaudio/portaudio_driver.h
  36. +2
    -2
      drivers/sun/sun_driver.c
  37. +1
    -1
      drivers/sun/sun_driver.h
  38. +5
    -5
      jackd/clientengine.c
  39. +6
    -6
      jackd/controlapi.c
  40. +7
    -5
      jackd/engine.c
  41. +8
    -7
      jackd/jackd.c
  42. +4
    -3
      jackd/transengine.c
  43. +10
    -9
      libjack/client.c
  44. +4
    -3
      libjack/driver.c
  45. +3
    -2
      libjack/intclient.c
  46. +3
    -3
      libjack/messagebuffer.c
  47. +2
    -1
      libjack/midiport.c
  48. +2
    -1
      libjack/pool.c
  49. +7
    -5
      libjack/port.c
  50. +3
    -3
      libjack/shm.c
  51. +1
    -1
      libjack/simd.c
  52. +2
    -1
      libjack/thread.c
  53. +3
    -2
      libjack/time.c
  54. +1
    -1
      libjack/timestamps.c
  55. +3
    -2
      libjack/transclient.c
  56. +2
    -2
      libjack/unlock.c
  57. +1
    -1
      tools

+ 1
- 1
config/os/generic/sanitycheck.c View File

@@ -1,4 +1,4 @@
#include <jack/sanitycheck.h>
#include "sanitycheck.h"

int
sanitycheck (int a, int b)


+ 2
- 2
config/os/gnu-linux/sanitycheck.c View File

@@ -19,8 +19,8 @@
**/

#include <stdio.h>
#include <jack/systemtest.h>
#include <jack/sanitycheck.h>
#include "systemtest.h"
#include "sanitycheck.h"

int sanitycheck (int care_about_realtime,
int care_about_freqscaling)


+ 1
- 1
config/os/gnu-linux/systemtest.c View File

@@ -40,7 +40,7 @@
#include <stdio.h>
#include <errno.h>

#include <jack/systemtest.h>
#include "systemtest.h"

/**
* This function checks for the existence of known frequency scaling mechanisms


+ 3
- 3
config/os/macosx/ipc.h View File

@@ -24,9 +24,9 @@

#include <mach/mach_error.h>
#include <servers/bootstrap.h>
#include <jack/internal.h>
#include <jack/engine.h>
#include <libjack/local.h> /* JOQ: fix me */
#include "internal.h"
#include "engine.h"
#include "libjack/local.h" /* JOQ: fix me */

/*
RPC without time out can put the jack server in a blocked state


+ 2
- 1
configure.ac View File

@@ -293,7 +293,8 @@ AC_DEFINE_UNQUOTED(JACK_SHM_TYPE, [$JACK_SHM_TYPE],
AM_CONDITIONAL(USE_POSIX_SHM, $USE_POSIX_SHM)

JACK_CORE_CFLAGS="-I\$(top_srcdir)/config -I\$(top_srcdir) \
-I\$(top_srcdir) -D_REENTRANT -D_POSIX_PTHREAD_SEMANTICS -Wall"
-I\$(top_srcdir) -I\$(top_srcdir)/include \
-D_REENTRANT -D_POSIX_PTHREAD_SEMANTICS -Wall"

JACK_LIBC_HELPER_FLAGS=
AC_ARG_ENABLE(ancient_libc,


+ 1
- 1
drivers/alsa-midi/alsa_midi.h View File

@@ -20,7 +20,7 @@
#define __jack_alsa_midi_h__

#include <jack/jack.h>
#include <jack/driver.h>
#include "driver.h"

typedef struct alsa_midi_t alsa_midi_t;
struct alsa_midi_t {


+ 1
- 1
drivers/alsa-midi/alsa_rawmidi.c View File

@@ -40,7 +40,7 @@
#ifdef STANDALONE
#define MESSAGE(...) fprintf(stderr, __VA_ARGS__)
#else
#include <jack/messagebuffer.h>
#include "messagebuffer.h"
#endif

#define info_log(...) MESSAGE(__VA_ARGS__)


+ 1
- 1
drivers/alsa-midi/alsa_seqmidi.c View File

@@ -62,7 +62,7 @@
#ifdef STANDALONE
#define MESSAGE(...) fprintf(stderr, __VA_ARGS__)
#else
#include <jack/messagebuffer.h>
#include "messagebuffer.h"
#endif

#define info_log(...) MESSAGE(__VA_ARGS__)


+ 1
- 1
drivers/alsa-midi/midi_pack.h View File

@@ -20,7 +20,7 @@
#define __jack_midi_pack_h__

#include <jack/midiport.h>
#include <jack/engine.h>
#include "engine.h"

typedef struct {
int running_status;


+ 1
- 1
drivers/alsa-midi/midi_unpack.h View File

@@ -20,7 +20,7 @@
#define __jack_midi_unpack_h__

#include <jack/midiport.h>
#include <jack/engine.h>
#include "engine.h"

enum {
MIDI_UNPACK_MAX_MSG = 1024


+ 3
- 3
drivers/alsa/alsa_driver.c View File

@@ -30,9 +30,9 @@
#include <regex.h>
#include <string.h>
#include <jack/internal.h>
#include <jack/engine.h>
#include <jack/messagebuffer.h>
#include "internal.h"
#include "engine.h"
#include "messagebuffer.h"

#include <sysdeps/time.h>



+ 5
- 5
drivers/alsa/alsa_driver.h View File

@@ -22,7 +22,7 @@

#include <alsa/asoundlib.h>
#include <alsa/pcm.h>
#include <jack/bitset.h>
#include "bitset.h"

#if __BYTE_ORDER == __LITTLE_ENDIAN
#define IS_LE 0
@@ -32,11 +32,11 @@
#define IS_BE 0
#endif

#include <jack/types.h>
#include <jack/hardware.h>
#include <jack/driver.h>
#include <jack/jack.h>
#include <jack/memops.h>
#include <jack/types.h>
#include "hardware.h"
#include "driver.h"
#include "memops.h"

#include "../alsa-midi/alsa_midi.h"



+ 1
- 1
drivers/alsa/generic_hw.c View File

@@ -17,7 +17,7 @@

*/

#include <jack/hardware.h>
#include "hardware.h"
#include "alsa_driver.h"

static int generic_set_input_monitor_mask (jack_hardware_t *hw, unsigned long mask)


+ 2
- 2
drivers/alsa/hammerfall.c View File

@@ -17,10 +17,10 @@

*/

#include <jack/hardware.h>
#include "hardware.h"
#include "alsa_driver.h"
#include "hammerfall.h"
#include <jack/internal.h>
#include "internal.h"

/* Set this to 1 if you want this compile error:
* warning: `hammerfall_monitor_controls' defined but not used */


+ 2
- 2
drivers/alsa/hdsp.c View File

@@ -18,10 +18,10 @@

*/

#include <jack/hardware.h>
#include "hardware.h"
#include "alsa_driver.h"
#include "hdsp.h"
#include <jack/internal.h>
#include "internal.h"

/* Constants to make working with the hdsp matrix mixer easier */
static const int HDSP_MINUS_INFINITY_GAIN = 0;


+ 2
- 2
drivers/alsa/ice1712.c View File

@@ -21,10 +21,10 @@
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/

#include <jack/hardware.h>
#include "hardware.h"
#include "alsa_driver.h"
#include "ice1712.h"
#include <jack/internal.h>
#include "internal.h"

static int
ice1712_hw_monitor_toggle(jack_hardware_t *hw, int idx, int onoff)


+ 1
- 1
drivers/alsa/memops.c View File

@@ -32,7 +32,7 @@
#include <limits.h>
#include <endian.h>

#include <jack/memops.h>
#include "memops.h"

/* Notes about these *_SCALING values.



+ 4
- 4
drivers/alsa/usx2y.c View File

@@ -18,12 +18,12 @@

*/

#include <jack/hardware.h>
#include "hardware.h"
#include "alsa_driver.h"
#include "usx2y.h"
#include <jack/internal.h>
#include <jack/engine.h>
#include <jack/messagebuffer.h>
#include "internal.h"
#include "engine.h"
#include "messagebuffer.h"
#include <sys/mman.h>

#ifndef ARRAY_SIZE


+ 2
- 1
drivers/coreaudio/coreaudio_driver.c View File

@@ -51,7 +51,8 @@

#include <stdio.h>
#include <string.h>
#include <jack/engine.h>

#include "engine.h"
#include "coreaudio_driver.h"

const int CAVersion = 3;


+ 5
- 4
drivers/coreaudio/coreaudio_driver.h View File

@@ -32,11 +32,12 @@
#include <AudioToolbox/AudioConverter.h>
#include <AudioUnit/AudioUnit.h>

#include <jack/types.h>
#include <jack/hardware.h>
#include <jack/driver.h>
#include <jack/jack.h>
#include <jack/internal.h>
#include <jack/types.h>

#include "hardware.h"
#include "driver.h"
#include "internal.h"

typedef struct {



+ 2
- 2
drivers/dummy/dummy_driver.c View File

@@ -29,8 +29,8 @@
#include <sys/mman.h>

#include <jack/types.h>
#include <jack/internal.h>
#include <jack/engine.h>
#include "internal.h"
#include "engine.h"
#include <sysdeps/time.h>

#include "dummy_driver.h"


+ 1
- 1
drivers/dummy/dummy_driver.h View File

@@ -24,8 +24,8 @@

#include <jack/types.h>
#include <jack/jslist.h>
#include <jack/driver.h>
#include <jack/jack.h>
#include "driver.h"
#include <config.h>

// needed for clock_nanosleep


+ 2
- 2
drivers/firewire/ffado_driver.c View File

@@ -38,8 +38,8 @@
#include <sys/mman.h>

#include <jack/types.h>
#include <jack/internal.h>
#include <jack/engine.h>
#include "internal.h"
#include "engine.h"
#include <sysdeps/time.h>
#include <assert.h>



+ 4
- 4
drivers/firewire/ffado_driver.h View File

@@ -47,14 +47,14 @@
#include <pthread.h>
#include <semaphore.h>

#include <jack/driver.h>
#include <jack/engine.h>
#include <jack/types.h>
#include <jack/internal.h>
#include <jack/types.h>
#include <jack/ringbuffer.h>
#include <jack/thread.h>

#include "driver.h"
#include "engine.h"
#include "internal.h"

#include <../alsa-midi/midi_pack.h>
#include <../alsa-midi/midi_unpack.h>



+ 3
- 2
drivers/freebob/freebob_driver.h View File

@@ -60,10 +60,11 @@
#include <pthread.h>
#include <semaphore.h>

#include <jack/driver.h>
#include <jack/engine.h>
#include <jack/types.h>

#include "driver.h"
#include "engine.h"

// debug print control flags
#define DEBUG_LEVEL_BUFFERS (1<<0)
#define DEBUG_LEVEL_HANDLERS (1<<1)


+ 1
- 1
drivers/netjack/net_driver.c View File

@@ -34,7 +34,7 @@ $Id: net_driver.c,v 1.17 2006/04/16 20:16:10 torbenh Exp $
#include <sys/mman.h>

#include <jack/types.h>
#include <jack/engine.h>
#include "engine.h"
#include <sysdeps/time.h>

#include <sys/types.h>


+ 2
- 1
drivers/netjack/net_driver.h View File

@@ -24,10 +24,11 @@
#include <unistd.h>

#include <jack/types.h>
#include <jack/driver.h>
#include <jack/jack.h>
#include <jack/transport.h>

#include "driver.h"

#include <netinet/in.h>

#include "netjack.h"


+ 1
- 1
drivers/netjack/netjack.c View File

@@ -36,7 +36,7 @@ $Id: net_driver.c,v 1.17 2006/04/16 20:16:10 torbenh Exp $

#include <jack/types.h>
// for jack_error in jack1
#include <jack/internal.h>
#include "internal.h"

#include "jack/jslist.h"



+ 0
- 1
drivers/netjack/netjack.h View File

@@ -24,7 +24,6 @@
#include <unistd.h>

#include <jack/types.h>
//#include <jack/driver.h>
#include <jack/jack.h>
#include <jack/transport.h>



+ 1
- 1
drivers/netjack/netjack_packet.c View File

@@ -47,7 +47,7 @@
#include <jack/types.h>

// for jack_error in jack1
#include <jack/internal.h>
#include "internal.h"

#include <sys/types.h>



+ 0
- 1
drivers/netjack/netjack_packet.h View File

@@ -34,7 +34,6 @@

#include <jack/jack.h>
#include <jack/types.h>
//#include <jack/engine.h>
#include <jack/jslist.h>

#include <jack/midiport.h>


+ 4
- 2
drivers/oss/oss_driver.c View File

@@ -58,9 +58,11 @@
#include <sys/soundcard.h>

#include <jack/types.h>
#include <jack/internal.h>
#include <jack/engine.h>
#include <jack/thread.h>

#include "internal.h"
#include "engine.h"

#include <sysdeps/time.h>

#include "oss_driver.h"


+ 2
- 1
drivers/oss/oss_driver.h View File

@@ -30,9 +30,10 @@

#include <jack/types.h>
#include <jack/jslist.h>
#include <jack/driver.h>
#include <jack/jack.h>

#include "driver.h"


#define OSS_DRIVER_DEF_DEV "/dev/dsp"
#define OSS_DRIVER_DEF_FS 48000


+ 1
- 1
drivers/portaudio/portaudio_driver.c View File

@@ -42,7 +42,7 @@
#include <string.h>
#include <stdarg.h>

#include <jack/engine.h>
#include "engine.h"
#include "portaudio_driver.h"

#ifdef JACK_USE_MACH_THREADS


+ 6
- 5
drivers/portaudio/portaudio_driver.h View File

@@ -25,12 +25,13 @@

#include <portaudio.h>

#include <jack/types.h>
#include <jack/hardware.h>
#include <jack/driver.h>
#include <jack/jack.h>
#include <jack/internal.h>
#include <jack/memops.h>
#include <jack/types.h>

#include "hardware.h"
#include "driver.h"
#include "internal.h"
#include "memops.h"

typedef struct {



+ 2
- 2
drivers/sun/sun_driver.c View File

@@ -52,9 +52,9 @@
#include <getopt.h>

#include <jack/types.h>
#include <jack/internal.h>
#include <jack/engine.h>
#include <jack/thread.h>
#include "internal.h"
#include "engine.h"
#include <sysdeps/time.h>

#include "sun_driver.h"


+ 1
- 1
drivers/sun/sun_driver.h View File

@@ -34,9 +34,9 @@

#include <jack/types.h>
#include <jack/jslist.h>
#include <jack/driver.h>
#include <jack/jack.h>

#include "driver.h"

#define SUN_DRIVER_DEF_DEV "/dev/audio"
#define SUN_DRIVER_DEF_FS 48000


+ 5
- 5
jackd/clientengine.c View File

@@ -29,11 +29,11 @@
#include <string.h>
#include <signal.h>

#include <jack/internal.h>
#include <jack/engine.h>
#include <jack/messagebuffer.h>
#include <jack/version.h>
#include <jack/driver.h>
#include "internal.h"
#include "engine.h"
#include "messagebuffer.h"
#include "version.h"
#include "driver.h"
#include <sysdeps/poll.h>
#include <sysdeps/ipc.h>



+ 6
- 6
jackd/controlapi.c View File

@@ -28,7 +28,7 @@

#include "config.h"

#include "jack/internal.h"
#include "internal.h"
#include <string.h>
#include <errno.h>
#include <stdio.h>
@@ -36,11 +36,13 @@
#include <signal.h>

#include "jack/jslist.h"
#include "jack/driver_interface.h"
#include "jack/driver.h"
#include "jack/control.h"

#include "jack/engine.h"
#include "driver_interface.h"
#include "driver.h"
#include "engine.h"
#include "clientengine.h"

//#include "JackError.h"
//#include "JackServer.h"
//#include "shm.h"
@@ -51,8 +53,6 @@
//#include "JackDriverLoader.h"
//#include "JackServerGlobals.h"

#include "jack/control.h"

/*
* XXX: dont like statics here.
*/


+ 7
- 5
jackd/engine.c View File

@@ -39,12 +39,14 @@
#include <string.h>
#include <limits.h>

#include <jack/internal.h>
#include <jack/engine.h>
#include <jack/messagebuffer.h>
#include <jack/driver.h>
#include <jack/shm.h>
#include <jack/thread.h>

#include "internal.h"
#include "engine.h"
#include "messagebuffer.h"
#include "driver.h"
#include "shm.h"

#include <sysdeps/poll.h>
#include <sysdeps/ipc.h>



+ 8
- 7
jackd/jackd.c View File

@@ -33,21 +33,22 @@
#include <dirent.h>
#include <dlfcn.h>

#include <jack/engine.h>
#include <jack/internal.h>
#include <jack/driver.h>
#include <jack/shm.h>
#include <jack/driver_parse.h>
#include <jack/messagebuffer.h>
#include <jack/midiport.h>

#include "engine.h"
#include "internal.h"
#include "driver.h"
#include "shm.h"
#include "driver_parse.h"
#include "messagebuffer.h"

#ifdef USE_CAPABILITIES

#include <sys/stat.h>
/* capgetp and capsetp are linux only extensions, not posix */
#undef _POSIX_SOURCE
#include <sys/capability.h>
#include <jack/start.h>
#include "start.h"

static struct stat pipe_stat;



+ 4
- 3
jackd/transengine.c View File

@@ -24,9 +24,10 @@
#include <assert.h>
#include <string.h>
#include <stdio.h>
#include <jack/internal.h>
#include <jack/engine.h>
#include <jack/messagebuffer.h>

#include "internal.h"
#include "engine.h"
#include "messagebuffer.h"
#include "transengine.h"

/********************** internal functions **********************/


+ 10
- 9
libjack/client.c View File

@@ -37,18 +37,19 @@
#include <sys/un.h>
#include <sys/mman.h>

#include <jack/internal.h>
#include <jack/jack.h>
#include <jack/engine.h>
#include <jack/pool.h>
#include <jack/jslist.h>
#include <jack/version.h>
#include <jack/shm.h>
#include <jack/unlock.h>
#include <jack/thread.h>
#include <jack/varargs.h>
#include <jack/intsimd.h>
#include <jack/messagebuffer.h>

#include "internal.h"
#include "engine.h"
#include "pool.h"
#include "version.h"
#include "shm.h"
#include "unlock.h"
#include "varargs.h"
#include "intsimd.h"
#include "messagebuffer.h"

#include <sysdeps/time.h>



+ 4
- 3
libjack/driver.c View File

@@ -26,11 +26,12 @@
#include <stdio.h>
#include <errno.h>

#include <jack/internal.h>
#include <jack/driver.h>
#include <jack/engine.h>
#include <jack/thread.h>

#include "internal.h"
#include "driver.h"
#include "engine.h"

#ifdef USE_MLOCK
#include <sys/mman.h>
#endif /* USE_MLOCK */


+ 3
- 2
libjack/intclient.c View File

@@ -25,9 +25,10 @@
#include <stdio.h>
#include <string.h>

#include <jack/internal.h>
#include <jack/intclient.h>
#include <jack/varargs.h>

#include "internal.h"
#include "varargs.h"

#include "local.h"



+ 3
- 3
libjack/messagebuffer.c View File

@@ -31,9 +31,9 @@
#include <stdarg.h>
#include <stdio.h>

#include <jack/messagebuffer.h>
#include <jack/atomicity.h>
#include <jack/internal.h>
#include "messagebuffer.h"
#include "atomicity.h"
#include "internal.h"

/* MB_NEXT() relies on the fact that MB_BUFFERS is a power of two */
#define MB_BUFFERS 128


+ 2
- 1
libjack/midiport.c View File

@@ -24,7 +24,8 @@

#include <jack/jack.h>
#include <jack/midiport.h>
#include <jack/port.h>

#include "port.h"

enum { MIDI_INLINE_MAX = 4 }; /* 4 bytes for default event size */



+ 2
- 1
libjack/pool.c View File

@@ -24,7 +24,8 @@
#endif
#include <stdlib.h>
#include <config.h>
#include <jack/pool.h>

#include "pool.h"

/* XXX need RT-pool based allocator here */
void *


+ 7
- 5
libjack/port.c View File

@@ -27,13 +27,15 @@

#include <jack/jack.h>
#include <jack/types.h>
#include <jack/internal.h>
#include <jack/engine.h>
#include <jack/pool.h>
#include <jack/port.h>
#include <jack/midiport.h>

#include <jack/jslist.h>
#include <jack/intsimd.h>

#include "internal.h"
#include "engine.h"
#include "pool.h"
#include "port.h"
#include "intsimd.h"

#include "local.h"



+ 3
- 3
libjack/shm.c View File

@@ -47,9 +47,9 @@
#include <sys/sem.h>
#include <sysdeps/ipc.h>

#include <jack/shm.h>
#include <jack/internal.h>
#include <jack/version.h>
#include "shm.h"
#include "internal.h"
#include "version.h"

#ifdef USE_POSIX_SHM
static jack_shmtype_t jack_shmtype = shm_POSIX;


+ 1
- 1
libjack/simd.c View File

@@ -20,7 +20,7 @@


#include <config.h>
#include <jack/intsimd.h>
#include "intsimd.h"

#ifdef USE_DYNSIMD



+ 2
- 1
libjack/thread.c View File

@@ -25,7 +25,8 @@

#include <jack/jack.h>
#include <jack/thread.h>
#include <jack/internal.h>

#include "internal.h"

#include <pthread.h>
#include <sched.h>


+ 3
- 2
libjack/time.c View File

@@ -31,9 +31,10 @@
#include <sys/types.h>
#include <sys/mman.h>

#include <jack/internal.h>
#include "internal.h"
#include "engine.h"

#include <jack/jack.h>
#include <jack/engine.h>

#include <sysdeps/time.h>
#include <sysdeps/cycles.h>


+ 1
- 1
libjack/timestamps.c View File

@@ -20,7 +20,7 @@
#include <stdlib.h>
#include <string.h>
#include <jack/timestamps.h>
#include <jack/internal.h>
#include "internal.h"
#include <sysdeps/time.h>

typedef struct {


+ 3
- 2
libjack/transclient.c View File

@@ -24,8 +24,9 @@
#include <errno.h>
#include <math.h>
#include <stdio.h>
#include <jack/atomicity.h>
#include <jack/internal.h>

#include "atomicity.h"
#include "internal.h"
#include "local.h"




+ 2
- 2
libjack/unlock.c View File

@@ -24,8 +24,8 @@
#include <limits.h>
#include <sys/mman.h>

#include "jack/unlock.h"
#include "jack/internal.h"
#include "unlock.h"
#include "internal.h"

static char* blacklist[] = {
"/libgtk",


+ 1
- 1
tools

@@ -1 +1 @@
Subproject commit c8270e367f8d45663f8bfd5478c6ae763645ae24
Subproject commit de33cb42676acfc6f94f4b3a9d5b40bfdcbb935c

Loading…
Cancel
Save