[PATCH 10/13 v2] msvcp90: Add implementation of _Concurrent_vector_Internal_swap.

Hua Meng 161220092 at smail.nju.edu.cn
Tue Jul 31 10:17:59 CDT 2018


Signed-off-by: Hua meng <161220092 at smail.nju.edu.cn>
---
 dlls/msvcp90/misc.c | 14 ++++++++++++--
 1 file changed, 12 insertions(+), 2 deletions(-)

diff --git a/dlls/msvcp90/misc.c b/dlls/msvcp90/misc.c
index 24488b41e0..d84af851c7 100644
--- a/dlls/msvcp90/misc.c
+++ b/dlls/msvcp90/misc.c
@@ -2184,9 +2184,19 @@ void __thiscall _Concurrent_vector_base_v4__Internal_resize(
 /* ?_Internal_swap at _Concurrent_vector_base_v4@details at Concurrency@@IEAAXAEAV123@@Z */
 DEFINE_THISCALL_WRAPPER(_Concurrent_vector_base_v4__Internal_swap, 8)
 void __thiscall _Concurrent_vector_base_v4__Internal_swap(
-        _Concurrent_vector_base_v4 *this, const _Concurrent_vector_base_v4 *v)
+        _Concurrent_vector_base_v4 *this, _Concurrent_vector_base_v4 *v)
 {
-    FIXME("(%p %p) stub\n", this, v);
+    _Concurrent_vector_base_v4 temp;
+
+    TRACE("(%p %p)\n", this, v);
+
+    temp = *this;
+    *this = *v;
+    *v = temp;
+    if(v->segment == this->storage)
+        v->segment = v->storage;
+    if(this->segment == v->storage)
+        this->segment = this->storage;
 }
 #endif
 
-- 
2.11.0







More information about the wine-devel mailing list