* Merged in new atomic instructions (twisti branch).
[cacao.git] / src / vm / jit / powerpc64 / linux / md-os.c
index de3146bbc1f05781d8f2b001226fd4e9c205c276..5a0c0497b3512800e979c59b2adcbe2f7f9cbd12 100644 (file)
@@ -262,32 +262,6 @@ void md_executionstate_write(executionstate_t *es, void *context)
 }
 
 
-/* md_critical_section_restart *************************************************
-
-   Search the critical sections tree for a matching section and set
-   the PC to the restart point, if necessary.
-
-*******************************************************************************/
-
-#if defined(ENABLE_THREADS)
-void md_critical_section_restart(ucontext_t *_uc)
-{
-       mcontext_t *_mc;
-       u1         *pc;
-       u1         *npc;
-
-       _mc = &(_uc->uc_mcontext);
-
-       pc = (u1 *) _mc->gp_regs[PT_NIP];
-
-       npc = critical_find_restart_point(pc);
-
-       if (npc != NULL)
-               _mc->gp_regs[PT_NIP] = (ptrint) npc;
-}
-#endif
-
-
 /*
  * These are local overrides for various environment variables in Emacs.
  * Please do not remove this and leave it at the end of the file, where