Browse Source

Merge 3c9fbd706c into 7c2f9ee5f8

pull/1/merge
falkTX 11 years ago
parent
commit
e75d692679
1 changed files with 6 additions and 1 deletions
  1. +6
    -1
      simple_session_client.c

+ 6
- 1
simple_session_client.c View File

@@ -10,8 +10,10 @@
#include <unistd.h>
#include <stdlib.h>
#include <string.h>
#include <inttypes.h>

#include <jack/jack.h>
#include <jack/types.h>
#include <jack/session.h>

jack_port_t *input_port;
@@ -193,8 +195,11 @@ main (int argc, char *argv[])
/* keep running until until we get a quit event */

while (!simple_quit)
#ifdef WIN32
Sleep(1*1000);
#else
sleep(1);
#endif

jack_client_close (client);
exit (0);


Loading…
Cancel
Save