datacollectorshm.h 329 B

123456789101112131415161718192021
  1. #ifndef DATACOLLECTORSHM_H
  2. #define DATACOLLECTORSHM_H
  3. #include <stdbool.h>
  4. #include <stdlib.h>
  5. #include <stdio.h>
  6. #include <sys/types.h>
  7. #include <sys/shm.h>
  8. #include <sys/ipc.h>
  9. #define SHM_PATH "/"
  10. #define SHM_PORT 5915
  11. typedef struct {
  12. uint time;
  13. uint influtime;
  14. } DataCollectorShm;
  15. #endif // DATACOLLECTORSHM_H