提交 ce8a9957 编写于 作者: R Rich Felker

fix shm_open wrongly being cancellable

上级 1d92cddb
......@@ -4,6 +4,7 @@
#include <unistd.h>
#include <string.h>
#include <limits.h>
#include <pthread.h>
char *__strchrnul(const char *, int);
......@@ -27,9 +28,13 @@ char *__shm_mapname(const char *name, char *buf)
int shm_open(const char *name, int flag, mode_t mode)
{
int cs;
char buf[NAME_MAX+10];
if (!(name = __shm_mapname(name, buf))) return -1;
return open(name, flag|O_NOFOLLOW|O_CLOEXEC|O_NONBLOCK, mode);
pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, &cs);
int fd = open(name, flag|O_NOFOLLOW|O_CLOEXEC|O_NONBLOCK, mode);
pthread_setcancelstate(cs, 0);
return fd;
}
int shm_unlink(const char *name)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册