Changeset 54408 in vbox for trunk/src/VBox/Runtime/r0drv
- Timestamp:
- Feb 24, 2015 2:06:56 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r0drv/generic/RTMpOn-r0drv-generic.cpp
r44529 r54408 5 5 6 6 /* 7 * Copyright (C) 2008-201 0Oracle Corporation7 * Copyright (C) 2008-2015 Oracle Corporation 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 45 45 46 46 47 RTDECL(bool) RTMpOnAllIsConcurrentSafe(void) 48 { 49 return false; 50 } 51 RT_EXPORT_SYMBOL(RTMpOnAllIsConcurrentSafe); 52 53 47 54 RTDECL(int) RTMpOnOthers(PFNRTMPWORKER pfnWorker, void *pvUser1, void *pvUser2) 48 55 { … … 65 72 RT_EXPORT_SYMBOL(RTMpOnSpecific); 66 73 74 75 RTDECL(int) RTMpOnPair(RTCPUID idCpu1, RTCPUID idCpu2, PFNRTMPWORKER pfnWorker, void *pvUser1, void *pvUser2) 76 { 77 NOREF(idCpu1); 78 NOREF(idCpu2); 79 NOREF(pfnWorker); 80 NOREF(pvUser1); 81 NOREF(pvUser2); 82 return VERR_NOT_SUP_IN_RAW_MODE; 83 } 84 RT_EXPORT_SYMBOL(RTMpOnPair); 85 86 87 88 RTDECL(bool) RTMpOnPairIsConcurrentExecSupported(void) 89 { 90 return false; 91 } 92 RT_EXPORT_SYMBOL(RTMpOnPairIsConcurrentExecSupported); 93
Note:
See TracChangeset
for help on using the changeset viewer.