| 2374 | } |
| 2375 | |
| 2376 | static int jackCallbackHandler(jack_nframes_t nframes, void * infoPointer) |
| 2377 | { |
| 2378 | CallbackInfo * info = (CallbackInfo *) infoPointer; |
| 2379 | |
| 2380 | RtApiJack * object = (RtApiJack *) info->object; |
| 2381 | if (object->callbackEvent((unsigned long) nframes) == false) return 1; |
| 2382 | |
| 2383 | return 0; |
| 2384 | } |
| 2385 | |
| 2386 | // This function will be called by a spawned thread when the Jack |
| 2387 | // server signals that it is shutting down. It is necessary to handle |
nothing calls this directly
no test coverage detected