skynet_monitor.h 348 B

1234567891011121314
  1. #ifndef SKYNET_MONITOR_H
  2. #define SKYNET_MONITOR_H
  3. #include <stdint.h>
  4. struct skynet_monitor;
  5. struct skynet_monitor * skynet_monitor_new();
  6. void skynet_monitor_delete(struct skynet_monitor *);
  7. void skynet_monitor_trigger(struct skynet_monitor *, uint32_t source, uint32_t destination);
  8. void skynet_monitor_check(struct skynet_monitor *);
  9. #endif