This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Latency test program | |
* | |
* Author: Jaroslav Kysela <perex@perex.cz> | |
* | |
* Author of bandpass filter sweep effect: | |
* Maarten de Boer <mdeboer@iua.upf.es> | |
* | |
* This small demo program can be used for measuring latency between | |
* capture and playback. This latency is measured from driver (diff when |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- Mode: python; python-indent-offset: 2 -*- | |
project ('test always_build', 'c') | |
buildid_h = custom_target ('buildid.h', | |
output : 'buildid.h', | |
command : ['../mkbuildid.sh', '+"%M"'], | |
build_always : true) | |
executable ('tester', 'tester.c', buildid_h) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git rcore/tests/multitest.cc rcore/tests/multitest.cc | |
index e8bed7a..0b985fd 100644 | |
--- rcore/tests/multitest.cc | |
+++ rcore/tests/multitest.cc | |
@@ -15,6 +15,125 @@ using namespace Rapicorn; | |
#error RAPICORN_CHECK_VERSION() implementation is broken | |
#endif | |
+#define VOLATILE volatile | |
+ |