forked from GitHub/gf-core
12 lines
239 B
C
12 lines
239 B
C
#ifndef IPC_H
|
|
#define IPC_H
|
|
|
|
PGF_INTERNAL_DECL
|
|
pthread_rwlock_t *ipc_new_file_rwlock(const char* file_path);
|
|
|
|
PGF_INTERNAL
|
|
void ipc_release_file_rwlock(const char* file_path,
|
|
pthread_rwlock_t *rwlock);
|
|
|
|
#endif
|