My application base a c++ module, in the c++ moudle, have follow instructions:
// MyModule.cpp int some_function(){ throw int(-1); return 0; } void main_function(){ try{ int ret = some_function(); } catch(int e){ dlog_print(DLOG_DEBUG, "Hello", "Ok, the int exception catched."); } catch(...){ dlog_pring(DLOG_DEBUG, "Hello", "Ok, the other exception catched."); } }
The try catch instructions works ok on emulator if launched by Tizen IDE.
But the application should crash if launched by Tizen Dynamic Analyzer.
It seems that try catch instruction doesn't work correctly.
What the matter?
Thanks