Coder Social home page Coder Social logo

elapsecrash's Introduction

elapseCrash

android's java_crash & native_crash monitor

TODO...

User
typedef struct {
  /* Pathname of shared object that contains address. */
  const char* dli_fname;
  /* Address at which shared object is loaded. */
  void* dli_fbase;
  /* Name of nearest symbol with address lower than addr. */
  const char* dli_sname;
  /* Exact address of symbol named in dli_sname. */
  void* dli_saddr;
} Dl_info;

Dl_info这个结构体定义,通常在编程中用于获取动态链接库(shared object,或称为共享库)中的符号信息。包含的一下成员:

  1. dli_fname:
    1. 类型:const char*
    2. 描述:指向包含地址的共享对象的路径名(文件名)的指针
  2. dli_fbase:
    1. 类型:const char*
    2. 描述:指向共享对象加载到内存中的基地址的指针。即共享对象在内存中的起始地址
  3. li_sname
    1. 类型:const char*
    2. 描述:
  4. dli_saddr
    1. 类型:void*
    2. 描述:指向符号 dli_sname 的确切地址的指针。

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.