12345678910111213141516171819 |
- #ifndef DATAPROCESSSHM_H
- #define DATAPROCESSSHM_H
- #include <stdbool.h>
- #include <sys/types.h>
- #include <sys/shm.h>
- #include <sys/ipc.h>
- #include <stdlib.h>
- #include <stdio.h>
- #define SHM_PATH "/"
- #define SHM_PORT 5998
- typedef struct{
- uint t_time;
- }DataProcessShm ;
- #endif // DATAPROCESSSHM_H
|