Created
September 19, 2015 11:13
-
-
Save onevcat/c13854c931f3ee28c53a to your computer and use it in GitHub Desktop.
Check if a debugger attached.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- (BOOL)Debugger{ | |
static BOOL debuggerIsAttached = NO; | |
static dispatch_once_t debuggerPredicate; | |
dispatch_once(&debuggerPredicate, ^{ | |
struct kinfo_proc info; | |
size_t info_size = sizeof(info); | |
int name[4]; | |
name[0] = CTL_KERN; | |
name[1] = KERN_PROC; | |
name[2] = KERN_PROC_PID; | |
name[3] = getpid(); | |
if (sysctl(name, 4, &info, &info_size, NULL, 0) == -1) { | |
debuggerIsAttached = false; | |
} | |
if (!debuggerIsAttached && (info.kp_proc.p_flag & P_TRACED) != 0) | |
debuggerIsAttached = true; | |
}); | |
return debuggerIsAttached; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment