码迷,mamicode.com
首页 > 其他好文 > 详细

c 解析so文件

时间:2020-03-01 12:33:32      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:lazy   handle   printf   cts   bsp   CLion   tld   thread   html   

1. 生成so文件 https://www.cnblogs.com/luckygxf/p/11894773.html

2. 解析so文件

3. 调用so库函数

 

//
// Created by gxf on 2020/2/27.
//

#include "hello.h"
#include <stdio.h>
#include <pthread.h>
#include <unistd.h>
#include <dlfcn.h>

void *printMain(void *msg);
void *logPrint(char *msg);

int main() {
    void (*agentFunc)(char *msg);
    void *handle = dlopen("/Users/gxf/CLionProjects/untitled/hello/libhello.so", RTLD_LAZY);
    agentFunc = dlsym(handle, "say_hello");
    agentFunc("hhhhhh");

    return 0;
}

void *logPrint(char *msg) {
    printf("int main.c msg:%s\n", msg);
}

void* printMain(void *msg) {
    while(1) {
        printf("sleep in main :%s\n", (char *)msg);
        sleep(1);
    }
}

  

c 解析so文件

标签:lazy   handle   printf   cts   bsp   CLion   tld   thread   html   

原文地址:https://www.cnblogs.com/luckygxf/p/12388909.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!