Changeset 43879 in vbox for trunk/src/VBox/Runtime/r3/solaris/mp-solaris.cpp
- Timestamp:
- Nov 15, 2012 2:49:23 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 82091
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/solaris/mp-solaris.cpp
r29269 r43879 64 64 * 65 65 * @returns IPRT status code. 66 * @param pvUser1 Unused. 67 * @param pvUser2 Unused. 66 * @param pvUser Unused. 68 67 */ 69 static DECLCALLBACK(int) rtMpSolarisOnce(void *pvUser 1, void *pvUser2)68 static DECLCALLBACK(int) rtMpSolarisOnce(void *pvUser) 70 69 { 71 70 int rc = VINF_SUCCESS; 72 NOREF(pvUser 1); NOREF(pvUser2);71 NOREF(pvUser); 73 72 74 73 /* … … 130 129 { 131 130 uint64_t u64 = 0; 132 int rc = RTOnce(&g_MpSolarisOnce, rtMpSolarisOnce, NULL , NULL);131 int rc = RTOnce(&g_MpSolarisOnce, rtMpSolarisOnce, NULL); 133 132 if (RT_SUCCESS(rc)) 134 133 {
Note:
See TracChangeset
for help on using the changeset viewer.