Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use fpurge/__fpurge to cancel buffered output #366

Merged
merged 1 commit into from
Jan 29, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions unix/os/zxwhen.c
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
*/

#include <stdio.h>
#ifdef __GLIBC__
#include <stdio_ext.h>
#endif
#include <signal.h>

#include <math.h>
Expand Down Expand Up @@ -32,8 +35,10 @@ int debug_sig = 0;
/* If the OS allows, cancel any buffered output. If the OS doesn't,
* do nothing.
*/
#ifdef __APPLE__
#define fcancel(fp) ((fp)->_r = (fp)->_w = 0)
#if defined(__APPLE__) || defined(BSD) || defined(__USE_BSD)
#define fcancel(fp) (void)fpurge(fp)
#elif defined(__GLIBC__)
#define fcancel(fp) __fpurge(fp)
#else
#define fcancel(fp)
#endif
Expand Down
Loading