- 论坛徽章:
- 0
|
我通过pthread_create创建了一个线程,然后想让这个线程停住。
由于使用的是NPTL库,所以想到了tkill系统调用。但是现在通过tkill发送一个SIGSTOP信号给线程之后,整个线程组中的所有线程都停下来了。
请问一下怎样才可以使进程中的某一个线程停住啊?(听别人说tkill系统调用可以,可我怎么试都不行呢?)
谢谢先。
附我的测试代码:
A:多线程程序:
- static void test_task_print()
- {
- while(1) {
- printf("Task is executingn" );
- sleep(5);
- }
- }
- int main(int argc, char *argv[])
- {
- int tid;
- pthread_t t;
- pthread_create(&t, NULL, test_task_print, NULL);
- while(1) {
- sleep(250);
- }
- return 0;
- }
复制代码
B:信号发送程序
- int main(int argc, char *argv[])
- {
- int tid;
- if (argc != 2) {
- printf("usage: ./kill_send sig\n");
- return -1;
- }
- tid = atoi(argv[1]);
- syscall(__NR_tkill, tid, SIGSTOP);
- printf("send signal to thread %d\n", tid);
- return 0;
- }
复制代码 |
|