部分GNU代码片 16、GDB调试多线程的方法

#include <stdio.h>
#include <stdlib.h>
#include <pthread.h>
#include <unistd.h>
#include <sys/types.h>
#include <stdio.h>
void *print_message_function1(
        void *ptr);
void *print_message_function2(
        void *ptr);
int main()
{
    pthread_t thread1, thread2;
    char *message1 = "Thread 1";
    char *message2 = "Thread 2";
    int iret1, iret2; /* Create independent threads each of which will execute function */
    iret1 = pthread_create( &thread1, NULL, print_message_function1,
            (void*) message1);
    iret2 = pthread_create( &thread2, NULL, print_message_function2,
            (void*) message2); /* Wait till threads are complete before main continues. Unless we  *//* wait we run the risk of executing an exit which will terminate   *//* the process and all threads before the threads have completed.   */
    pthread_join(thread1, NULL);
    pthread_join(thread2, NULL);
    printf("Thread 1 returns: %d/n", iret1);
    printf("Thread 2 returns: %d/n", iret2);
    exit(0);
}

void *print_message_function1(
        void *ptr)
{
   
    int i = 1 ;
    while(i)
    {
        sleep(10);
    }
    char *message;
    message = (char *) ptr;
    printf("%s /n", message);
    return message;
}
void *print_message_function2(
        void *ptr)
{
    int i = 1 ;
    while(i)
    {
        sleep(10);
    }
    char *message;
    message = (char *) ptr;
    printf("%s /n", message);
    return message;
}
 

1、g++ -g -o test   *.cpp

2、gdb test  

3、对每个print_message_function函数都要设置下面两个断点

b  sleep(10);

b char *message;

4、r

5、set var i =0

6、可进入线程调试

 

 

However, to confirm that you can debug threaded programs under gdb, it is important
to make sure that /lib/libpthread.so and /lib/libthread_db.so are not stripped. The
following example illustrates how to check this:
$ file -L /lib/libthread_db.so
/lib/libthread_db.so: ELF 32-bit LSB shared object, Intel 80386, version 1, not
stripped
$ file -L /lib/libpthread.so
/lib/libpthread.so: ELF 32-bit LSB shared object, Intel 80386, version 1, not
stripped

 如果lib下没有,就/usr/lib/

如果你系统里的都是stripped的fix the problem by
recompiling glibc.

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值