--- linuxsampler/trunk/ChangeLog 2020/04/05 21:41:27 3764 +++ linuxsampler/trunk/ChangeLog 2020/06/14 14:29:41 3790 @@ -62,6 +62,11 @@ option). - Thread class: raise compiler warning if pthread_testcancel() is not available, because it can lead to deadlocks. + - Mutex class: Implemented optional bug detection and deadlock debugging + features. + - Ref<> class is now thread safe (as lock-free and wait-free + implementation). + - Fixed compilation error with Bison >= 3.6.0. * Real-time instrument scripts: - Added method ScriptVM::setExitResultEnabled() which allows to @@ -274,6 +279,11 @@ - Fixed re-entrant issue with function calls which caused wrong result values if the same function was called multiple times in a term (specifically if metric prefixes were used). + - NKSP language: Just throw a warning, not an error if an array variable of + size zero was declared. + - NKSP language: Allow omitting explicit array size on array variable + declaration if combined with immediate value assignment + (e.g. declare %foo[] := ( 1, 2, 3 ) ). * test cases: - Fixed compiler errors in test cases.