Changeset 15843 in vbox for trunk/src/VBox/Runtime/r0drv/freebsd
- Timestamp:
- Jan 7, 2009 6:35:24 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 41435
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r0drv/freebsd/mp-r0drv-darwin.cpp
r15837 r15843 46 46 } 47 47 48 RTDECL(bool) RTMpIsCpuWorkPending()49 {50 /** @todo (not used on non-Windows platforms yet */51 return false;52 }53 48 54 55 /** 56 * Wrapper between the native FreeBSD per-cpu callback and PFNRTWORKER 49 /** 50 * Wrapper between the native FreeBSD per-cpu callback and PFNRTWORKER 57 51 * for the RTMpOnAll API. 58 * 52 * 59 53 * @param pvArg Pointer to the RTMPARGS package. 60 54 */ … … 79 73 80 74 81 /** 82 * Wrapper between the native FreeBSD per-cpu callback and PFNRTWORKER 75 /** 76 * Wrapper between the native FreeBSD per-cpu callback and PFNRTWORKER 83 77 * for the RTMpOnOthers API. 84 * 78 * 85 79 * @param pvArg Pointer to the RTMPARGS package. 86 80 */ … … 108 102 109 103 110 /** 111 * Wrapper between the native FreeBSD per-cpu callback and PFNRTWORKER 104 /** 105 * Wrapper between the native FreeBSD per-cpu callback and PFNRTWORKER 112 106 * for the RTMpOnSpecific API. 113 * 107 * 114 108 * @param pvArg Pointer to the RTMPARGS package. 115 109 */ … … 136 130 Args.cHits = 0; 137 131 smp_rendezvous(NULL, rtmpOnSpecificFreeBSDWrapper, NULL, &Args); 138 return Args.cHits == 1 139 ? VINF_SUCCESS 132 return Args.cHits == 1 133 ? VINF_SUCCESS 140 134 : VERR_CPU_NOT_FOUND; 141 135 }
Note:
See TracChangeset
for help on using the changeset viewer.