Changeset 21337 in vbox for trunk/src/VBox/Runtime/r0drv/generic
- Timestamp:
- Jul 7, 2009 2:58:27 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 49685
- Location:
- trunk/src/VBox/Runtime/r0drv/generic
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r0drv/generic/RTMpIsCpuWorkPending-r0drv-generic.cpp
r15843 r21337 34 34 *******************************************************************************/ 35 35 #include <iprt/mp.h> 36 #include "internal/iprt.h" 36 37 37 38 … … 45 46 return false; 46 47 } 48 RT_EXPORT_SYMBOL(RTMpIsCpuWorkPending); 47 49 -
trunk/src/VBox/Runtime/r0drv/generic/RTMpOn-r0drv-generic.cpp
r8245 r21337 34 34 *******************************************************************************/ 35 35 #include <iprt/mp.h> 36 #include "internal/iprt.h" 37 36 38 #include <iprt/err.h> 37 39 … … 44 46 return VERR_NOT_SUPPORTED; 45 47 } 48 RT_EXPORT_SYMBOL(RTMpOnAll); 46 49 47 50 … … 53 56 return VERR_NOT_SUPPORTED; 54 57 } 58 RT_EXPORT_SYMBOL(RTMpOnOthers); 55 59 56 60 … … 63 67 return VERR_NOT_SUPPORTED; 64 68 } 69 RT_EXPORT_SYMBOL(RTMpOnSpecific); 65 70 -
trunk/src/VBox/Runtime/r0drv/generic/RTMpPokeCpu-r0drv-generic.cpp
r19389 r21337 34 34 *******************************************************************************/ 35 35 #include <iprt/mp.h> 36 #include "internal/iprt.h" 36 37 37 38 … … 48 49 return RTMpOnSpecific(idCpu, rtMpNtPokeCpuDummy, NULL, NULL); 49 50 } 51 RT_EXPORT_SYMBOL(RTMpPokeCpu); 50 52 -
trunk/src/VBox/Runtime/r0drv/generic/RTThreadPreemptDisable-r0drv-generic.cpp
r13254 r21337 29 29 */ 30 30 31 31 32 /******************************************************************************* 32 33 * Header Files * 33 34 *******************************************************************************/ 34 35 #include <iprt/thread.h> 36 #include "internal/iprt.h" 37 35 38 #include <iprt/assert.h> 36 39 … … 42 45 pState->uchDummy = 42; 43 46 } 47 RT_EXPORT_SYMBOL(RTThreadPreemptDisable); 44 48 -
trunk/src/VBox/Runtime/r0drv/generic/RTThreadPreemptIsEnabled-r0drv-generic.cpp
r13254 r21337 29 29 */ 30 30 31 31 32 /******************************************************************************* 32 33 * Header Files * 33 34 *******************************************************************************/ 34 35 #include <iprt/thread.h> 36 #include "internal/iprt.h" 37 35 38 #include <iprt/assert.h> 36 39 … … 41 44 return true; 42 45 } 46 RT_EXPORT_SYMBOL(RTThreadPreemptIsEnabled); 43 47 -
trunk/src/VBox/Runtime/r0drv/generic/RTThreadPreemptIsPending-r0drv-generic.cpp
r19918 r21337 29 29 */ 30 30 31 31 32 /******************************************************************************* 32 33 * Header Files * 33 34 *******************************************************************************/ 34 35 #include <iprt/thread.h> 36 #include "internal/iprt.h" 37 35 38 #include <iprt/assert.h> 36 39 … … 41 44 return false; 42 45 } 46 RT_EXPORT_SYMBOL(RTThreadPreemptIsPending); 43 47 -
trunk/src/VBox/Runtime/r0drv/generic/RTThreadPreemptIsPendingTrusty-r0drv-generic.cpp
r20124 r21337 29 29 */ 30 30 31 31 32 /******************************************************************************* 32 33 * Header Files * 33 34 *******************************************************************************/ 34 35 #include <iprt/thread.h> 36 #include "internal/iprt.h" 35 37 36 38 … … 40 42 return false; 41 43 } 44 RT_EXPORT_SYMBOL(RTThreadPreemptIsPendingTrusty); 42 45 -
trunk/src/VBox/Runtime/r0drv/generic/RTThreadPreemptRestore-r0drv-generic.cpp
r13275 r21337 29 29 */ 30 30 31 31 32 /******************************************************************************* 32 33 * Header Files * 33 34 *******************************************************************************/ 34 35 #include <iprt/thread.h> 36 #include "internal/iprt.h" 37 35 38 #include <iprt/assert.h> 36 39 … … 42 45 pState->uchDummy = 0; 43 46 } 47 RT_EXPORT_SYMBOL(RTThreadPreemptRestore); 44 48 -
trunk/src/VBox/Runtime/r0drv/generic/mpnotification-r0drv-generic.cpp
r9619 r21337 29 29 */ 30 30 31 31 32 /******************************************************************************* 32 33 * Header Files * 33 34 *******************************************************************************/ 34 35 #include <iprt/mp.h> 36 #include "internal/iprt.h" 37 35 38 #include <iprt/err.h> 36 39 #include "r0drv/mp-r0drv.h" … … 43 46 return VINF_SUCCESS; 44 47 } 48 RT_EXPORT_SYMBOL(RTMpNotificationRegister); 45 49 46 50 … … 51 55 return VINF_SUCCESS; 52 56 } 57 RT_EXPORT_SYMBOL(RTMpNotificationDeregister); 53 58 54 59
Note:
See TracChangeset
for help on using the changeset viewer.