我怎麼肯定是否是運行在調試器下呢?app
下面的代碼展現最佳的判斷方式ide
#include <assert.h>post
#include <stdbool.h>this
#include <sys/types.h>spa
#include <unistd.h>debug
#include <sys/sysctl.h>調試
static bool AmIBeingDebugged(void)orm
// Returns true if the current process is being debugged (either ci
// running under the debugger or has a debugger attached post facto).get
{
int junk;
int mib[4];
struct kinfo_proc info;
size_t size;
// Initialize the flags so that, if sysctl fails for some bizarre
// reason, we get a predictable result.
info.kp_proc.p_flag = 0;
// Initialize mib, which tells sysctl the info we want, in this case
// we're looking for information about a specific process ID.
mib[0] = CTL_KERN;
mib[1] = KERN_PROC;
mib[2] = KERN_PROC_PID;
mib[3] = getpid();
// Call sysctl.
size = sizeof(info);
junk = sysctl(mib, sizeof(mib) / sizeof(*mib), &info, &size, NULL, 0);
assert(junk == 0);
// We're being debugged if the P_TRACED flag is set.
return ( (info.kp_proc.p_flag & P_TRACED) != 0 );
}
重要提示 由於 kinfo_proc 結構體的定義 (在 <sys/sysctl.h>中) 是有條件的依賴 __APPLE_API_UNSTABLE, 因此你應該限制上述代碼的使用來調試編譯你的工程。
參考地址:https://developer.apple.com