aboutsummaryrefslogtreecommitdiff
path: root/include/debug.inc
diff options
context:
space:
mode:
authorRichard <richard@1bpm.net>2022-10-21 01:48:24 +0100
committerRichard <richard@1bpm.net>2022-10-21 01:48:24 +0100
commitf7354554425e17757f31d81e26789ad20df852bf (patch)
treeeae360816a2e08929d27b0824cffa4f5ea4d034c /include/debug.inc
parentcd457011be1e053f154d1d78b0e733c131470dca (diff)
downloadcsd-partialemergence-f7354554425e17757f31d81e26789ad20df852bf.tar.gz
csd-partialemergence-f7354554425e17757f31d81e26789ad20df852bf.tar.bz2
csd-partialemergence-f7354554425e17757f31d81e26789ad20df852bf.zip
debugged, CPU usage reduced, progression formulated
Diffstat (limited to 'include/debug.inc')
-rwxr-xr-xinclude/debug.inc27
1 files changed, 0 insertions, 27 deletions
diff --git a/include/debug.inc b/include/debug.inc
deleted file mode 100755
index 58e7365..0000000
--- a/include/debug.inc
+++ /dev/null
@@ -1,27 +0,0 @@
-#ifndef INC_DEBUG
-#define INC_DEBUG ##
-/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
-
- Partial Emergence
- by Richard Knight 2022
-
- Installation submission for the International Csound Conference 2022
-
- Debug
- If $DEBUG_RUNTIME is set, then exit the performance after that number of seconds
-* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
-
-
-#ifdef DEBUG_RUNTIME
-#define DEBUG ##
-
-instr debug_exit
- prints "Debug caused exit\n"
- exitnow
-endin
-schedule("debug_exit", $DEBUG_RUNTIME, 1)
-
-#end
-
-#end
-