- 论坛徽章:
- 11
|
原帖由 acewind 于 2008-10-21 13:04 发表 ![]()
是这样的,我的程序里面有一个死循环检测的功能,可以通过CPU的占有率检测到某一个线程有可能发生了死循环
然后我想知道这个线程在什么地方发生了死循环
于是我打算通过发信号的方式,发一个信号给这个发生 ...
呵呵,大概明白你想做什么了,是不是要实现类似下面的功能呢?
#include <stdio.h>
#include <stdlib.h>
#include <assert.h>
#include <signal.h>
#include <pthread.h>
#include <unistd.h>
#include <execinfo.h>
#include <sys/select.h>
void sig_rt(int signo, siginfo_t *info, void *context);
void *trace(void *arg);
int Sleep(int sec);
int main(int argc, char *argv[])
{
pthread_t tid;
assert(pthread_create(&tid, NULL, trace, NULL) == 0);
Sleep(3);
pthread_kill(tid, SIGRTMAX);
fprintf(stdout, "Send signal to thread: 0x%x\n", (unsigned int)tid);
Sleep(9);
return 0;
}
void sig_rt(int signo, siginfo_t *info, void *context)
{
void *array[10];
size_t size;
char **strings;
size_t i;
if (signo == SIGRTMAX) {
size = backtrace (array, 10);
strings = backtrace_symbols (array, size);
fprintf (stderr, "Thread(0x%x) obtained %zd stack frames.\n", (unsigned int)pthread_self(), size);
for (i = 0; i < size; i++)
fprintf (stderr, "%s\n", strings[i]);
free (strings);
} else {
fprintf(stderr, "Another signo:%d", signo);
}
}
void *trace(void *arg)
{
sigset_t newset;
struct sigaction act;
sigemptyset(&newset);
sigaddset(&newset, SIGRTMAX);
pthread_sigmask(SIG_BLOCK, &newset, NULL);
act.sa_sigaction = sig_rt;
sigemptyset(&act.sa_mask);
act.sa_flags = SA_SIGINFO;
sigaction(SIGRTMAX, &act, NULL);
Sleep(6);
pthread_sigmask(SIG_UNBLOCK, &newset, NULL);
sleep(3);
return NULL;
}
int Sleep(int sec)
{
struct timeval sTime;
sTime.tv_sec = sec;
sTime.tv_usec = 0;
return select(0, NULL, NULL, NULL, &sTime);
}
73,0-1 Bot
|
- 输出如下:
- Send signal to thread: 0xb7fcaba0
- Thread(0xb7fcaba0) obtained 5 stack frames.
- ./trace(sig_rt+0x22) [0x8048a71]
- /lib/tls/libpthread.so.0 [0x3dda90]
- ./trace(trace+0xb8) [0x8048bcd]
- /lib/tls/libpthread.so.0 [0x3d73cc]
- /lib/tls/libc.so.6(__clone+0x5e) [0x2511ae]
复制代码
[ 本帖最后由 timespace 于 2008-10-21 15:45 编辑 ] |
|