* [musl] [PATCH] open thread name file in pthread_setname_np with close-on-exec flag
@ 2020-12-24 4:18 Érico Nogueira
0 siblings, 0 replies; only message in thread
From: Érico Nogueira @ 2020-12-24 4:18 UTC (permalink / raw)
To: musl; +Cc: Érico Rolim
From: Érico Rolim <ericonr@disroot.org>
the omission of the flag here seems to have been an oversight when the
function was added in 8fb28b0b3e7a5e958fb844722a4b2ef9bc244af1
---
I was asked to send this part of my pthread_getname_np patch
separately.
src/thread/pthread_setname_np.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/thread/pthread_setname_np.c b/src/thread/pthread_setname_np.c
index 82d35e17..fc2d2306 100644
--- a/src/thread/pthread_setname_np.c
+++ b/src/thread/pthread_setname_np.c
@@ -19,7 +19,7 @@ int pthread_setname_np(pthread_t thread, const char *name)
snprintf(f, sizeof f, "/proc/self/task/%d/comm", thread->tid);
pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, &cs);
- if ((fd = open(f, O_WRONLY)) < 0 || write(fd, name, len) < 0) status = errno;
+ if ((fd = open(f, O_WRONLY|O_CLOEXEC)) < 0 || write(fd, name, len) < 0) status = errno;
if (fd >= 0) close(fd);
pthread_setcancelstate(cs, 0);
return status;
--
2.29.2
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2020-12-24 4:18 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-12-24 4:18 [musl] [PATCH] open thread name file in pthread_setname_np with close-on-exec flag Érico Nogueira
mailing list of musl libc
This inbox may be cloned and mirrored by anyone:
git clone --mirror http://inbox.vuxu.org/musl
# If you have public-inbox 1.1+ installed, you may
# initialize and index your mirror using the following commands:
public-inbox-init -V1 musl musl/ http://inbox.vuxu.org/musl \
musl@inbox.vuxu.org
public-inbox-index musl
Example config snippet for mirrors.
Newsgroup available over NNTP:
nntp://inbox.vuxu.org/vuxu.archive.musl
code repositories for the project(s) associated with this inbox:
https://git.vuxu.org/mirror/musl/
AGPL code for this site: git clone https://public-inbox.org/public-inbox.git