I\'m trying to put the equivalent of asm{int 3} (or similar) into my iPhone program. My goal is to have Xcode stop exactly on the offending line, without having
int pthread_kill(pthread_t thread, int sig); allows for continuation, and pauses on the current thread, via pthread_self().
Similar to other signal functions (e.g., kill(), raise(), etc.), however,pthread_kill() is used to request that a signal be delivered to a particular thread.
Pthread_kill Manual