]> gitweb.factorcode.org Git - factor.git/blobdiff - vm/factor.cpp
cleaned up code a bit, added multithreaded mode flags
[factor.git] / vm / factor.cpp
index 57bceb9cb7042f79961b121a23c0c5092da1277c..026453eae344a89b42f7139558dfb9846b3d00f7 100755 (executable)
@@ -12,9 +12,9 @@ factorvm *lookup_vm(unsigned long threadid)
        return thread_vms[threadid];
 }
 
-void register_vm(unsigned long threadid, factorvm *vm)
+void register_vm(unsigned long threadid, factorvm *thevm)
 {
-       thread_vms[threadid] = vm;
+       thread_vms[threadid] = thevm;
 }