diff options
author | Ulrich Drepper <drepper@redhat.com> | 2001-11-28 23:35:29 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2001-11-28 23:35:29 +0000 |
commit | c6baa867d3d57ca3eb89226b44ad696960d869cd (patch) | |
tree | 65612b8dabc1e9d2b0f957290c8076eae741d895 /libio/libioP.h | |
parent | cf6a2367e82ba5b322baf0fc0caa5d57e799c72d (diff) | |
download | glibc-c6baa867d3d57ca3eb89226b44ad696960d869cd.tar glibc-c6baa867d3d57ca3eb89226b44ad696960d869cd.tar.gz glibc-c6baa867d3d57ca3eb89226b44ad696960d869cd.tar.bz2 glibc-c6baa867d3d57ca3eb89226b44ad696960d869cd.zip |
Update.
2001-11-28 Ulrich Drepper <drepper@redhat.com>
* libio/genops.c (_IO_flush_all_lockp): New function. The same code
as the old _IO_flush_all but lock only if parameter is nonzero.
(_IO_flush_all): Call _IO_flush_all_lockp with 1 as parameter.
* libio/libioP.h: Add prototype for _IO_flush_all_lockp.
* sysdeps/generic/abort.c (fflush): Define to _IO_flush_all_lockp(0)
if libio is used.
Diffstat (limited to 'libio/libioP.h')
-rw-r--r-- | libio/libioP.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libio/libioP.h b/libio/libioP.h index 9a336fb0cb..3a32caa8b6 100644 --- a/libio/libioP.h +++ b/libio/libioP.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1993, 1997, 1998, 1999, 2000 Free Software Foundation, Inc. +/* Copyright (C) 1993,1997,1998,1999,2000,2001 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -426,6 +426,7 @@ extern int _IO_do_write __P ((_IO_FILE *, const char *, _IO_size_t)); extern int _IO_new_do_write __P ((_IO_FILE *, const char *, _IO_size_t)); extern int _IO_old_do_write __P ((_IO_FILE *, const char *, _IO_size_t)); extern int _IO_wdo_write __P ((_IO_FILE *, const wchar_t *, _IO_size_t)); +extern int _IO_flush_all_lockp __P ((int)); extern int _IO_flush_all __P ((void)); extern int _IO_cleanup __P ((void)); extern void _IO_flush_all_linebuffered __P ((void)); |