Changeset 32464 in vbox
- Timestamp:
- Sep 14, 2010 8:48:32 AM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 65836
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/stream.cpp
r30111 r32464 27 27 28 28 29 #if defined(RT_OS_LINUX) /* PORTME: check for the _unlocked functions in stdio.h */ 30 #define HAVE_FWRITE_UNLOCKED 31 #endif 32 29 33 /******************************************************************************* 30 34 * Header Files * … … 34 38 35 39 #include <iprt/asm.h> 36 #include <iprt/critsect.h> 40 #ifndef HAVE_FWRITE_UNLOCKED 41 # include <iprt/critsect.h> 42 #endif 37 43 #include <iprt/string.h> 38 44 #include <iprt/assert.h> … … 47 53 #include <stdio.h> 48 54 #include <errno.h> 49 50 #if defined(RT_OS_LINUX) /* PORTME: check for the _unlocked functions in stdio.h */51 #define HAVE_FWRITE_UNLOCKED52 #endif53 55 54 56
Note:
See TracChangeset
for help on using the changeset viewer.