1234567891011121314151617181920212223 |
- #ifndef YTSERVICESHM_H
- #define YTSERVICESHM_H
- #include <stdbool.h>
- #include <sys/types.h>
- #include <sys/shm.h>
- #include <sys/ipc.h>
- #include <stdlib.h>
- #include <stdio.h>
- #include <time.h>
- #define SHM_PATH "/"
- #define SHM_PORT 1801
- #define APP_NAME "ytServiceCore"
- #define CORE_MAIN 1
- #define DB_THREAD 2
- typedef struct {
- time_t updatetime[16];
- }YT_SERVICE_SHM;
- #endif // YTSERVICESHM_H
|