merge from gcc
This commit is contained in:
parent
6f4a176f07
commit
88f6628ca8
|
@ -1,3 +1,7 @@
|
||||||
|
2005-04-25 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
|
||||||
|
|
||||||
|
* libiberty.h (unlock_std_streams): New.
|
||||||
|
|
||||||
2005-04-19 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
|
2005-04-19 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
|
||||||
|
|
||||||
* hashtab.h, libiberty.h, objalloc.h, splay-tree.h, ternary.h:
|
* hashtab.h, libiberty.h, objalloc.h, splay-tree.h, ternary.h:
|
||||||
|
|
|
@ -54,6 +54,12 @@ extern "C" {
|
||||||
|
|
||||||
extern void unlock_stream (FILE *);
|
extern void unlock_stream (FILE *);
|
||||||
|
|
||||||
|
/* If the OS supports it, ensure that the standard I/O streams, stdin,
|
||||||
|
stdout and stderr are setup to avoid any multi-threaded locking.
|
||||||
|
Otherwise do nothing. */
|
||||||
|
|
||||||
|
extern void unlock_std_streams (void);
|
||||||
|
|
||||||
/* Open and return a FILE pointer. If the OS supports it, ensure that
|
/* Open and return a FILE pointer. If the OS supports it, ensure that
|
||||||
the stream is setup to avoid any multi-threaded locking. Otherwise
|
the stream is setup to avoid any multi-threaded locking. Otherwise
|
||||||
return the FILE pointer unchanged. */
|
return the FILE pointer unchanged. */
|
||||||
|
|
Loading…
Reference in New Issue