Changeset 21337 in vbox for trunk/src/VBox/Runtime/generic/semfastmutex-generic.cpp
- Timestamp:
- Jul 7, 2009 2:58:27 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 49685
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/generic/semfastmutex-generic.cpp
r8245 r21337 34 34 *******************************************************************************/ 35 35 #include <iprt/semaphore.h> 36 #include "internal/iprt.h" 37 36 38 #include <iprt/alloc.h> 37 39 #include <iprt/err.h> … … 50 52 return rc; 51 53 } 54 RT_EXPORT_SYMBOL(RTSemFastMutexCreate); 52 55 53 56 … … 62 65 return rc; 63 66 } 67 RT_EXPORT_SYMBOL(RTSemFastMutexDestroy); 64 68 65 69 … … 68 72 return RTCritSectEnter((PRTCRITSECT)MutexSem); 69 73 } 74 RT_EXPORT_SYMBOL(RTSemFastMutexRequest); 70 75 71 76 … … 74 79 return RTCritSectLeave((PRTCRITSECT)MutexSem); 75 80 } 81 RT_EXPORT_SYMBOL(RTSemFastMutexRelease); 76 82
Note:
See TracChangeset
for help on using the changeset viewer.