diff options
| author | 2025-01-27 21:56:39 -0500 | |
|---|---|---|
| committer | 2025-01-27 21:56:39 -0500 | |
| commit | 457a3cc1a04e45e31370d9083186436b0d12ab1d (patch) | |
| tree | 7ffb9d676edd4a1b88e8f1020dd905efcfe6b83a /scripts | |
| parent | f760ecedb619a55ec8ee989639ac385f27e82d98 (diff) | |
| download | camu-457a3cc1a04e45e31370d9083186436b0d12ab1d.tar.gz camu-457a3cc1a04e45e31370d9083186436b0d12ab1d.tar.bz2 camu-457a3cc1a04e45e31370d9083186436b0d12ab1d.zip | |
Refactor threaded waits
- Move seek to handler thread.
- Cleanup and comment some stuff.
Signed-off-by: Andrew Opalach <andrew@akon.city>
Diffstat (limited to 'scripts')
| -rwxr-xr-x | scripts/adb_logcat.sh | 2 | ||||
| -rwxr-xr-x | scripts/run_valgrind.sh | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/scripts/adb_logcat.sh b/scripts/adb_logcat.sh new file mode 100755 index 0000000..b0da2a0 --- /dev/null +++ b/scripts/adb_logcat.sh @@ -0,0 +1,2 @@ +#! /usr/bin/env sh +adb logcat *:S CTV diff --git a/scripts/run_valgrind.sh b/scripts/run_valgrind.sh index 583327c..bccc34c 100755 --- a/scripts/run_valgrind.sh +++ b/scripts/run_valgrind.sh @@ -1,5 +1,5 @@ #! /usr/bin/env sh source ../scripts/python_env -valgrind --leak-check=full ./src/fruits/cmv/cmv "$@" +#valgrind --leak-check=full ./src/fruits/cmv/cmv "$@" #valgrind --leak-check=full --show-leak-kinds=all ./src/fruits/cmv/cmv "$@" -#valgrind --leak-check=no --show-error-list=yes ./src/fruits/cmv/cmv "$@" +valgrind --leak-check=no --show-error-list=yes ./src/fruits/cmv/cmv "$@" |