1 Star 0 Fork 2

左刀北/libunwind-demo

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
main.c 576 Bytes
一键复制 编辑 原始数据 按行查看 历史
大川搬砖 提交于 2022-08-27 10:58 . 添加测试文件。
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <pthread.h>
#include "func-stack-backtrace.h"
void b()
{
func_backtrace();
}
void a()
{
b();
}
static void *th_1(void *para)
{
int32_t i = 0;
while(1)
{
a();
printf("--------------------------------------run %d-----------------------------------\n", i++);
sleep(1);
}
}
int main(int argc, char *argv[])
{
pthread_t tid = 0;
a();
pthread_create(&tid, NULL, th_1, NULL);
while(1)
{
sleep(1);
}
return 0;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/zuo_dao_bei/libunwind-demo.git
git@gitee.com:zuo_dao_bei/libunwind-demo.git
zuo_dao_bei
libunwind-demo
libunwind-demo
master

搜索帮助