From: bernie Date: Mon, 25 Aug 2008 12:05:22 +0000 (+0000) Subject: emul: enforce timer to be stopped before destroying the emulator X-Git-Tag: 2.0.0~244 X-Git-Url: https://codewiz.org/gitweb?a=commitdiff_plain;h=40965fef2fc792c9066f82cda1f2fb7328307456;hp=1a01d8d68079fc5b0a57c49dee67401df4d5bc6d;p=bertos.git emul: enforce timer to be stopped before destroying the emulator git-svn-id: https://src.develer.com/svnoss/bertos/trunk@1690 38d2e660-2303-0410-9eaa-f027e97ec537 --- diff --git a/bertos/emul/emul.cpp b/bertos/emul/emul.cpp index 9b06fb90..3d0eb0a4 100644 --- a/bertos/emul/emul.cpp +++ b/bertos/emul/emul.cpp @@ -91,6 +91,10 @@ extern "C" void emul_cleanup() { MOD_CLEANUP(emul); + // Timer must be made inactive before we destroy the emulator + extern bool timer_initialized; + ASSERT(!timer_initialized); + delete emul; emul = NULL; }