mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-01 03:53:33 +00:00
e0c2b91b3e
It never did anything and isn't worthwhile as documentation.
36 lines
952 B
C
36 lines
952 B
C
#ifndef COSMOPOLITAN_LIBC_STDIO_FFLUSH_H_
|
|
#define COSMOPOLITAN_LIBC_STDIO_FFLUSH_H_
|
|
#include "libc/intrin/nopl.internal.h"
|
|
#include "libc/stdio/stdio.h"
|
|
#include "libc/thread/thread.h"
|
|
#include "libc/thread/tls.h"
|
|
#if !(__ASSEMBLER__ + __LINKER__ + 0)
|
|
COSMOPOLITAN_C_START_
|
|
|
|
struct StdioFlushHandles {
|
|
size_t i, n;
|
|
FILE **p;
|
|
};
|
|
|
|
struct StdioFlush {
|
|
struct StdioFlushHandles handles;
|
|
FILE *handles_initmem[8];
|
|
};
|
|
|
|
extern struct StdioFlush __fflush;
|
|
extern pthread_mutex_t __fflush_lock_obj;
|
|
|
|
void __fflush_lock(void);
|
|
void __fflush_unlock(void);
|
|
|
|
#ifdef _NOPL0
|
|
#define __fflush_lock() _NOPL0("__threadcalls", __fflush_lock)
|
|
#define __fflush_unlock() _NOPL0("__threadcalls", __fflush_unlock)
|
|
#else
|
|
#define __fflush_lock() (__threaded ? __fflush_lock() : 0)
|
|
#define __fflush_unlock() (__threaded ? __fflush_unlock() : 0)
|
|
#endif
|
|
|
|
COSMOPOLITAN_C_END_
|
|
#endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */
|
|
#endif /* COSMOPOLITAN_LIBC_STDIO_FFLUSH_H_ */
|