1
0
mirror of https://github.com/adtools/clib2.git synced 2025-12-08 14:59:05 +00:00

- fwrite() now flushes the entire "buffer" for unbuffered files. The

exception are "interactive" files such as console windows. For these
  line buffered output is used.

- Whether or not a file is bound to an interactive device, such as a
  console window, is now checked and remembered after a file descriptor
  has been associated with it.


git-svn-id: file:///Users/olsen/Code/migration-svn-zu-git/logical-line-staging/clib2/trunk@14788 87f5fb63-7c3d-0410-a384-fd976d0f7a62
This commit is contained in:
Olaf Barthel
2004-12-27 09:15:55 +00:00
parent e77cc97daf
commit 49df44872d
9 changed files with 79 additions and 74 deletions

View File

@ -1,5 +1,5 @@
/*
* $Id: stdlib_assertion_failure.c,v 1.2 2004-12-26 10:28:56 obarthel Exp $
* $Id: stdlib_assertion_failure.c,v 1.3 2004-12-27 09:15:55 obarthel Exp $
*
* :ts=4
*
@ -80,17 +80,11 @@ __assertion_failure(
if(fd != NULL &&
FLAG_IS_SET(fd->fd_Flags,FDF_IN_USE) &&
FLAG_IS_SET(fd->fd_Flags,FDF_WRITE) &&
FLAG_IS_CLEAR(fd->fd_Flags,FDF_IS_SOCKET))
FLAG_IS_SET(fd->fd_Flags,FDF_IS_INTERACTIVE))
{
BPTR file_handle;
assert( FLAG_IS_CLEAR(fd->fd_Flags,FDF_IS_SOCKET) );
file_handle = fd->fd_DefaultFile;
if(file_handle != ZERO &&
((struct FileHandle *)BADDR(file_handle))->fh_Type != NULL &&
IsInteractive(file_handle))
{
use_stderr = TRUE;
}
use_stderr = TRUE;
}
}
}