fps
fps
Possible fix for https://github.com/syncthing/syncthing-android/issues/1814 * Add a neutral button to simply dismiss the dialog and close the app (but leave it in the tasks list) * Make the exit button...
When looking for a way to debug the deadlock in https://github.com/jackaudio/jack2/issues/395 I stumbled across this advisory: https://wiki.sei.cmu.edu/confluence/display/c/POS04-C.+Avoid+using+PTHREAD_MUTEX_NORMAL+type+mutex+locks In the end it didn't detect the deadlock (which is not a proof...
E.g.: fps@mango 07:45:46 ~/Downloads/ $ jackd --version jackd version 0.122.0 tmpdir /dev/shm protocol 24 fps@mango 11:04:35 ~/Downloads/ $ jackd -d alsa -d plug:default jackd 0.122.0 Copyright 2001-2009 Paul Davis, Stephane...
1. Start jackd in --sync mode: `jackd --sync -R -P 70 -d alsa -d hw:iXR -p 64 -n 2` 2. In a second terminal run: `jack_cpu -t 5 -c 99`...
Hi, I'm using julia from nix-on-android to create a Pluto.jl session which I then connect to via Firefox for Android. It's nifty to do some hacking on the go and...
This might help: diff --git a/Makefile b/Makefile index 81fb3a3..90ed65a 100644 --- a/Makefile +++ b/Makefile @@ -20,7 +20,9 @@ ifeq ($(MOD),1) EFFECTS_DIR += HardwareBypass endif -INSTALL_PATH = /usr/local/lib/lv2 +PREFIX ?= /usr...
The help text of jack_load_test says: ```console -t, --timeout Wait timeout in seconds ``` But the time is interpreted as microseconds: See: https://github.com/jackaudio/jack-example-tools/blob/767acf0c93cbcccefd4d9ad89bb6779caffcf2b4/tools/load_test.c#L49 which calls `jack_get_time()` https://jackaudio.org/api/group__TimeFunctions.html#ga3b26460e62a56cf012e9075dcb1b6294 but `jack_get_time` returns...