Changeset 91817 in vbox
- Timestamp:
- Oct 18, 2021 9:52:40 AM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 147603
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/PDMAllCritSectRw.cpp
r91815 r91817 557 557 PCRTLOCKVALSRCPOS pSrcPos, bool fNoVal) 558 558 #else 559 DECLASM(int) pdmCritSectRwEnterShared(PVMCC pVM, PPDMCRITSECTRW pThis, int rcBusy, bool fTryOnly, 560 PCRTLOCKVALSRCPOS pSrcPos, bool fNoVal); 559 561 DECLASM(int) StkBack_pdmCritSectRwEnterShared(PVMCC pVM, PPDMCRITSECTRW pThis, int rcBusy, bool fTryOnly, 560 562 PCRTLOCKVALSRCPOS pSrcPos, bool fNoVal) … … 740 742 /* not reached */ 741 743 } 742 #if defined(VMM_R0_SWITCH_STACK) && defined(IN_RING0)743 decltype(StkBack_pdmCritSectRwEnterShared) pdmCritSectRwEnterShared;744 #endif745 744 746 745 … … 1323 1322 PCRTLOCKVALSRCPOS pSrcPos, bool fNoVal) 1324 1323 #else 1324 DECLASM(int) pdmCritSectRwEnterExcl(PVMCC pVM, PPDMCRITSECTRW pThis, int rcBusy, bool fTryOnly, 1325 PCRTLOCKVALSRCPOS pSrcPos, bool fNoVal); 1325 1326 DECLASM(int) StkBack_pdmCritSectRwEnterExcl(PVMCC pVM, PPDMCRITSECTRW pThis, int rcBusy, bool fTryOnly, 1326 1327 PCRTLOCKVALSRCPOS pSrcPos, bool fNoVal) … … 1538 1539 #endif 1539 1540 } 1540 #if defined(VMM_R0_SWITCH_STACK) && defined(IN_RING0)1541 decltype(StkBack_pdmCritSectRwEnterExcl) pdmCritSectRwEnterExcl;1542 #endif1543 1541 1544 1542 … … 1698 1696 static int pdmCritSectRwLeaveExclWorker(PVMCC pVM, PPDMCRITSECTRW pThis, bool fNoVal) 1699 1697 #else 1698 DECLASM(int) pdmCritSectRwLeaveExclWorker(PVMCC pVM, PPDMCRITSECTRW pThis, bool fNoVal); 1700 1699 DECLASM(int) StkBack_pdmCritSectRwLeaveExclWorker(PVMCC pVM, PPDMCRITSECTRW pThis, bool fNoVal) 1701 1700 #endif … … 1933 1932 #endif 1934 1933 } 1935 #if defined(VMM_R0_SWITCH_STACK) && defined(IN_RING0)1936 decltype(StkBack_pdmCritSectRwLeaveExclWorker) pdmCritSectRwLeaveExclWorker;1937 #endif1938 1934 1939 1935
Note:
See TracChangeset
for help on using the changeset viewer.