| | |
| | | |
| | | // shm manipulate |
| | | static tfn_shm_init fn_shm_init = NULL; |
| | | static tfn_shm_alloc_key fn_shm_alloc_key = NULL; |
| | | static tfn_shm_destroy fn_shm_destroy = NULL; |
| | | static tfn_shm_rm_dead_queue fn_shm_rm_dead_queue = NULL; |
| | | |
| | |
| | | // labels |
| | | // shm |
| | | const static char l_shm_init[] = "shm_init"; |
| | | const static char l_shm_alloc_key[] = "shm_alloc_key"; |
| | | const static char l_shm_destroy[] = "shm_destroy"; |
| | | const static char l_shm_rm_dead_queue[] = "shm_remove_queues_exclude"; |
| | | |
| | |
| | | |
| | | // shm manipulate |
| | | void wrap_fn_shm_init(hcsoftbus lib, int size); |
| | | int wrap_fn_shm_alloc_key(hcsoftbus lib); |
| | | void wrap_fn_shm_destroy(hcsoftbus lib); |
| | | void wrap_fn_shm_rm_dead_queue(hcsoftbus lib, void *array, int len); |
| | | |