summaryrefslogtreecommitdiff
path: root/src/stdio/fmemopen.c
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2012-11-09 14:26:25 -0500
committerRich Felker <dalias@aerifal.cx>2012-11-09 14:26:25 -0500
commitdc059f03e8277abe3f515f350bd9615416aaa5ef (patch)
treec9505ffffa3d8a211f7d3a0432986664409e2e24 /src/stdio/fmemopen.c
parent65465101ee23447bf30adc3a9ebf817d58f5d956 (diff)
downloadmusl-dc059f03e8277abe3f515f350bd9615416aaa5ef.tar.gz
always add memory streams to stdio open file list
per interpretation for austin group issue #626, fflush(0) and exit() must block waiting for a lock if another thread has locked a memory stream with flockfile. this adds some otherwise-unnecessary synchronization cost to use of memory streams, but there was already a synchronization cost calling malloc anyway. previously the stream was only added to the open file list in single-threaded programs, so that upon subsequent call to pthread_create, locking could be turned on for the stream.
Diffstat (limited to 'src/stdio/fmemopen.c')
-rw-r--r--src/stdio/fmemopen.c13
1 files changed, 7 insertions, 6 deletions
diff --git a/src/stdio/fmemopen.c b/src/stdio/fmemopen.c
index 91d52bc1..d7849609 100644
--- a/src/stdio/fmemopen.c
+++ b/src/stdio/fmemopen.c
@@ -108,12 +108,13 @@ FILE *fmemopen(void *restrict buf, size_t size, const char *restrict mode)
f->seek = mseek;
f->close = mclose;
- if (!libc.threaded) {
- f->lock = -1;
- f->next = libc.ofl_head;
- if (libc.ofl_head) libc.ofl_head->prev = f;
- libc.ofl_head = f;
- }
+ if (!libc.threaded) f->lock = -1;
+
+ OFLLOCK();
+ f->next = libc.ofl_head;
+ if (libc.ofl_head) libc.ofl_head->prev = f;
+ libc.ofl_head = f;
+ OFLUNLOCK();
return f;
}