Introduce shm_open() and shm_unlink()

This commit is contained in:
Justine Tunney 2023-10-31 23:57:52 -07:00
parent fadb64a2bf
commit 0b1acce680
No known key found for this signature in database
GPG key ID: BE714B4575D6E328
9 changed files with 313 additions and 37 deletions

View file

@ -46,7 +46,7 @@ void IgnoreStderr(void) {
const char *SemPath(const char *name) {
static _Thread_local char buf[PATH_MAX];
return sem_path_np(name, buf, sizeof(buf));
return shm_path_np(name, buf, sizeof(buf));
}
void SetUp(void) {