A dynamic tracer for Linux

sym.h 207B

1234567891011121314151617
  1. #ifndef _PLY_SYM_H
  2. #define _PLY_SYM_H
  3. #include "type.h"
  4. typedef struct sym {
  5. const char *name;
  6. tid_t tid;
  7. } sym_t;
  8. typedef struct symtab {
  9. sym_t *sym;
  10. size_t len;
  11. } symtab_t;
  12. #endif /* _PLY_SYM_H */