* src/threads/native/threads.c (threads_attach_current_thread): Rename
authoredwin <none@none>
Thu, 5 Oct 2006 20:30:12 +0000 (20:30 +0000)
committeredwin <none@none>
Thu, 5 Oct 2006 20:30:12 +0000 (20:30 +0000)
left-over `t` to `thread` in interpreter code.

src/threads/native/threads.c

index 74aac7df3ac9d22ce152f1b6760b78728160c68f..74592b192944ac800817b31a3ca42232876fa0f6 100644 (file)
@@ -29,7 +29,7 @@
    Changes: Christian Thalinger
                        Edwin Steiner
 
-   $Id: threads.c 5698 2006-10-05 17:28:13Z twisti $
+   $Id: threads.c 5704 2006-10-05 20:30:12Z edwin $
 
 */
 
@@ -1275,7 +1275,7 @@ bool threads_attach_current_thread(JavaVMAttachArgs *vm_aargs, bool isdaemon)
 
        if (opt_intrp) {
                MSET(intrp_main_stack, 0, u1, opt_stacksize);
-               t->_global_sp = intrp_main_stack + opt_stacksize;
+               thread->_global_sp = intrp_main_stack + opt_stacksize;
        }
 #endif