1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-30 22:43:12 +03:00

NPTL: Refactor named semaphore code to use shm-directory.h

This commit is contained in:
Roland McGrath
2014-12-12 13:17:21 -08:00
parent c76d1ff514
commit e4f639e4a1
14 changed files with 113 additions and 183 deletions

View File

@ -32,7 +32,7 @@
int
shm_unlink (const char *name)
{
SHM_GET_NAME (ENOENT, -1);
SHM_GET_NAME (ENOENT, -1, "");
int result = unlink (shm_name);
if (result < 0 && errno == EPERM)