A dynamic tracer for Linux

func.h 242B

123456789101112131415161718
  1. #ifndef _FUNC_H
  2. #define _FUNC_H
  3. struct node;
  4. struct prog;
  5. struct type;
  6. struct func {
  7. const char *name;
  8. struct type *type;
  9. int (*static_verify)(struct node *);
  10. int (*type_infer)(struct prog *, struct node *);
  11. };
  12. #endif /* _FUNC_H */