mirror of
https://github.com/fluencelabs/musl
synced 2025-05-02 18:42:15 +00:00
functions which open in-memory FILE stream variants all shared a tail with __fdopen, adding the FILE structure to stdio's open file list. replacing this common tail with a function call reduces code size and duplication of logic. the list is also partially encapsulated now. function signatures were chosen to facilitate tail call optimization and reduce the need for additional accessor functions. with these changes, static linked programs that do not use stdio no longer have an open file list at all.
12 lines
172 B
C
12 lines
172 B
C
#include "stdio_impl.h"
|
|
|
|
FILE *__ofl_add(FILE *f)
|
|
{
|
|
FILE **head = __ofl_lock();
|
|
f->next = *head;
|
|
if (*head) (*head)->prev = f;
|
|
*head = f;
|
|
__ofl_unlock();
|
|
return f;
|
|
}
|