svn commit: r228875 - head/include

David Chisnall theraven at FreeBSD.org
Sun Dec 25 16:03:54 UTC 2011


Author: theraven
Date: Sun Dec 25 16:03:54 2011
New Revision: 228875
URL: http://svn.freebsd.org/changeset/base/228875

Log:
  Restore __is_threaded in C++ mode.  Some Google stuff needs it apparently.
  
  Reported by:	swills
  Approved by:	dim (mentor)

Modified:
  head/include/stdio.h

Modified: head/include/stdio.h
==============================================================================
--- head/include/stdio.h	Sun Dec 25 14:29:36 2011	(r228874)
+++ head/include/stdio.h	Sun Dec 25 16:03:54 2011	(r228875)
@@ -470,6 +470,9 @@ static __inline int __sputc(int _c, FILE
 			__swbuf((int)(c), p) : \
 		(*(p)->_p = (c), (int)*(p)->_p++))
 #endif
+
+extern int __isthreaded;
+
 #ifndef __cplusplus
 
 #define	__sfeof(p)	(((p)->_flags & __SEOF) != 0)
@@ -477,7 +480,6 @@ static __inline int __sputc(int _c, FILE
 #define	__sclearerr(p)	((void)((p)->_flags &= ~(__SERR|__SEOF)))
 #define	__sfileno(p)	((p)->_file)
 
-extern int __isthreaded;
 
 #define	feof(p)		(!__isthreaded ? __sfeof(p) : (feof)(p))
 #define	ferror(p)	(!__isthreaded ? __sferror(p) : (ferror)(p))


More information about the svn-src-all mailing list