]> Git Repo - qemu.git/blobdiff - op-i386.c
basic clone() support
[qemu.git] / op-i386.c
index a9583ecf394073ca544e003ae9a1643f2ed86f17..835a1ed51bc8ebd7225c9e78ced43b115a70beef 100644 (file)
--- a/op-i386.c
+++ b/op-i386.c
@@ -2272,3 +2272,14 @@ void OPPROTO op_fninit(void)
     env->fptags[6] = 1;
     env->fptags[7] = 1;
 }
+
+/* threading support */
+void OPPROTO op_lock(void)
+{
+    cpu_lock();
+}
+
+void OPPROTO op_unlock(void)
+{
+    cpu_unlock();
+}
This page took 0.020836 seconds and 4 git commands to generate.