agboxshm.h 376 B

12345678910111213141516171819202122232425
  1. #ifndef AGBOXSHM_H
  2. #define AGBOXSHM_H
  3. #include <stdbool.h>
  4. #include <stdio.h>
  5. #include <stdlib.h>
  6. #include <sys/types.h>
  7. #include <sys/ipc.h>
  8. #include <sys/shm.h>
  9. #define SHM_PORT 8522
  10. #define SHM_PATH "/"
  11. typedef struct {
  12. uint t_time;
  13. }ProcessStatus;
  14. typedef struct {
  15. unsigned char Enabled;
  16. ProcessStatus processStatus[16];
  17. }AGBoxShm;
  18. #endif // AGBOXSHM_H