Le 28 mars 2011 à 09:56, Cedric Roux a écrit :
----- "Julien Claassen"
<julien(a)c-lab.de> wrote:
There is a callback in jack_connect, which is
given to jack. It
just sets a
simple integer from 0 to 1. Somewhere in the program (after the
connection
call), there's a while-loop waitng for this variable to become 1. I
suspect,
there it sticks. Couldn't see any other problem there. Well maybe the
try to change:
int done = 0;
to:
int volatile done = 0;
in example-clients/connect.c
(if that's the place you're talking about)
Hi Julien,
I'll try to do some deeper tests ASAP (hope this week).
Stéphane