From 9c3b406b4d68225fcb6e2fadb41ed0a4358083b0 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Tue, 19 May 1998 11:34:04 +0000 Subject: Addition of tcdrain() from Eric Norum. --- cpukit/libcsupport/src/newlibc.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'cpukit/libcsupport/src/newlibc.c') diff --git a/cpukit/libcsupport/src/newlibc.c b/cpukit/libcsupport/src/newlibc.c index 8fb1916d7e..089c7e7541 100644 --- a/cpukit/libcsupport/src/newlibc.c +++ b/cpukit/libcsupport/src/newlibc.c @@ -64,6 +64,8 @@ struct _reent libc_global_reent = _REENT_INIT(libc_global_reent); extern void _wrapup_reent(struct _reent *); extern void _reclaim_reent(struct _reent *); +#include + void libc_wrapup(void) { @@ -86,6 +88,16 @@ libc_wrapup(void) #endif _REENT = &libc_global_reent; } + + /* + * Try to drain output buffers. + * + * Should this be changed to do *all* file streams? + * _fwalk (_REENT, fclose); + */ + fclose (stdin); + fclose (stdout); + fclose (stderr); } -- cgit v1.2.3