dataprocessshm.h 301 B

12345678910111213141516171819
  1. #ifndef DATAPROCESSSHM_H
  2. #define DATAPROCESSSHM_H
  3. #include <stdbool.h>
  4. #include <sys/types.h>
  5. #include <sys/shm.h>
  6. #include <sys/ipc.h>
  7. #include <stdlib.h>
  8. #include <stdio.h>
  9. #define SHM_PATH "/"
  10. #define SHM_PORT 5998
  11. typedef struct{
  12. uint t_time;
  13. }DataProcessShm ;
  14. #endif // DATAPROCESSSHM_H