如何捕捉我的代碼中的符號查找錯誤,所以目前我的程序崩潰?如何捕捉符號查找錯誤
void main()
{
try {
dlopen("shared.so", RTLD_LAZY);
/**
now running a function in this shared object and
this function calls a undefined reference
and then it crashes but i want to go in the catch block
*/
} catch(...) {
}
}
10 ..如何檢查返回值? – SuperSaiyan
它只是一個簡短的代碼片段dlopen返回一個有效的句柄,並且這個共享對象中的函數運行良好,直到unreferenced被稱爲 – helmi
'void main'?在2012年? – Flexo