diff options
author | Ulrich Drepper <drepper@redhat.com> | 2001-08-10 21:40:18 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2001-08-10 21:40:18 +0000 |
commit | 0d875352b73d4e50c4a578a706378b3e51885126 (patch) | |
tree | 4681287a082d0b009ceb77a851e9171cb7e651d3 /libio/strops.c | |
parent | c31c27256e4735e9d05676aecd9d5be73bbabde1 (diff) | |
download | glibc-0d875352b73d4e50c4a578a706378b3e51885126.zip glibc-0d875352b73d4e50c4a578a706378b3e51885126.tar.gz glibc-0d875352b73d4e50c4a578a706378b3e51885126.tar.bz2 |
Call __fsetlocking for temporary stream.
Diffstat (limited to 'libio/strops.c')
-rw-r--r-- | libio/strops.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/libio/strops.c b/libio/strops.c index 6820275..c3b6625 100644 --- a/libio/strops.c +++ b/libio/strops.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993, 1997, 1998, 1999, 2000 Free Software Foundation, Inc. +/* Copyright (C) 1993, 1997-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 @@ -28,6 +28,7 @@ #include "strfile.h" #include "libioP.h" #include <string.h> +#include <stdio_ext.h> #if 0 /* The following definitions are for exposition only. @@ -107,6 +108,11 @@ _IO_str_init_static (sf, ptr, size, pstart) } /* A null _allocate_buffer function flags the strfile as being static. */ sf->_s._allocate_buffer = (_IO_alloc_type) 0; + +#ifdef _IO_MTSAFE_IO + /* We never have to lock this stream. */ + __fsetlocking ((FILE *) fp, FSETLOCKING_BYCALLER); +#endif } void |