X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstdio%2Fclearerr.c;h=20af80f298b4a1e792e6e8de80b5cce58f4e977a;hb=0e35e82c5e9a0804864839e8fc0e985b1ae41f07;hp=922f6ab9d239e18cbf5eea9d959d0102c10d9f54;hpb=0d54a75af25ca44411e7c4190cc2a93a390e61a2;p=pdclib.old diff --git a/functions/stdio/clearerr.c b/functions/stdio/clearerr.c index 922f6ab..20af80f 100644 --- a/functions/stdio/clearerr.c +++ b/functions/stdio/clearerr.c @@ -9,12 +9,20 @@ #include #ifndef REGTEST +#include <_PDCLIB_io.h> -void clearerr( struct _PDCLIB_file_t * stream ) +void clearerr_unlocked( FILE * stream ) { stream->status &= ~( _PDCLIB_ERRORFLAG | _PDCLIB_EOFFLAG ); } +void clearerr( FILE * stream ) +{ + flockfile( stream ); + clearerr_unlocked( stream ); + funlockfile( stream ); +} + #endif #ifdef TEST @@ -23,12 +31,12 @@ void clearerr( struct _PDCLIB_file_t * stream ) int main( void ) { FILE * fh; - remove( "testfile" ); - TESTCASE( ( fh = fopen( "testfile", "w+" ) ) != NULL ); + TESTCASE( ( fh = tmpfile() ) != NULL ); /* Flags should be clear */ TESTCASE( ! ferror( fh ) ); TESTCASE( ! feof( fh ) ); /* Reading from input stream - should provoke error */ + /* FIXME: Apparently glibc disagrees on this assumption. How to provoke error on glibc? */ TESTCASE( fgetc( fh ) == EOF ); TESTCASE( ferror( fh ) ); TESTCASE( ! feof( fh ) ); @@ -46,7 +54,6 @@ int main( void ) TESTCASE( ! ferror( fh ) ); TESTCASE( ! feof( fh ) ); TESTCASE( fclose( fh ) == 0 ); - remove( "testfile" ); return TEST_RESULTS; }