⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 pthread_stop_world.c

📁 linux下建立JAVA虚拟机的源码KAFFE
💻 C
📖 第 1 页 / 共 2 页
字号:
#include "private/pthread_support.h"#if defined(GC_PTHREADS) && !defined(GC_SOLARIS_THREADS) \     && !defined(GC_WIN32_THREADS) && !defined(GC_DARWIN_THREADS)#include <signal.h>#include <semaphore.h>#include <errno.h>#include <unistd.h>#include <sys/time.h>#ifndef HPUX# include <sys/select.h>  /* Doesn't exist on HP/UX 11.11. */#endif#if DEBUG_THREADS#ifndef NSIG# if defined(MAXSIG)#  define NSIG (MAXSIG+1)# elif defined(_NSIG)#  define NSIG _NSIG# elif defined(__SIGRTMAX)#  define NSIG (__SIGRTMAX+1)# else  --> please fix it# endif#endifvoid GC_print_sig_mask(){    sigset_t blocked;    int i;    if (pthread_sigmask(SIG_BLOCK, NULL, &blocked) != 0)    	ABORT("pthread_sigmask");    GC_printf0("Blocked: ");    for (i = 1; i < NSIG; i++) {        if (sigismember(&blocked, i)) { GC_printf1("%ld ",(long) i); }    }    GC_printf0("\n");}#endif/* Remove the signals that we want to allow in thread stopping 	*//* handler from a set.						*/void GC_remove_allowed_signals(sigset_t *set){#   ifdef NO_SIGNALS      if (sigdelset(set, SIGINT) != 0	  || sigdelset(set, SIGQUIT) != 0	  || sigdelset(set, SIGABRT) != 0	  || sigdelset(set, SIGTERM) != 0) {        ABORT("sigdelset() failed");      }#   endif#   ifdef MPROTECT_VDB      /* Handlers write to the thread structure, which is in the heap,	*/      /* and hence can trigger a protection fault.			*/      if (sigdelset(set, SIGSEGV) != 0#	  ifdef SIGBUS	    || sigdelset(set, SIGBUS) != 0# 	  endif	  ) {        ABORT("sigdelset() failed");      }#   endif}static sigset_t suspend_handler_mask;volatile sig_atomic_t GC_stop_count;			/* Incremented at the beginning of GC_stop_world. */volatile sig_atomic_t GC_world_is_stopped = FALSE;			/* FALSE ==> it is safe for threads to restart, i.e. */			/* they will see another suspend signal before they  */			/* are expected to stop (unless they have voluntarily */			/* stopped).					     */void GC_brief_async_signal_safe_sleep(){    struct timeval tv;    tv.tv_sec = 0;    tv.tv_usec = 1000 * TIME_LIMIT / 2;    select(0, 0, 0, 0, &tv);}#ifdef GC_OSF1_THREADS  GC_bool GC_retry_signals = TRUE;#else  GC_bool GC_retry_signals = FALSE;#endif/* * We use signals to stop threads during GC. *  * Suspended threads wait in signal handler for SIG_THR_RESTART. * That's more portable than semaphores or condition variables. * (We do use sem_post from a signal handler, but that should be portable.) * * The thread suspension signal SIG_SUSPEND is now defined in gc_priv.h. * Note that we can't just stop a thread; we need it to save its stack * pointer(s) and acknowledge. */#ifndef SIG_THR_RESTART#  if defined(GC_HPUX_THREADS) || defined(GC_OSF1_THREADS)#    ifdef _SIGRTMIN#      define SIG_THR_RESTART _SIGRTMIN + 5#    else#      define SIG_THR_RESTART SIGRTMIN + 5#    endif#  else#   define SIG_THR_RESTART SIGXCPU#  endif#endifsem_t GC_suspend_ack_sem;void GC_suspend_handler_inner(ptr_t sig_arg);#if defined(IA64) || defined(HP_PA)extern void GC_with_callee_saves_pushed();void GC_suspend_handler(int sig){  int old_errno = errno;  GC_with_callee_saves_pushed(GC_suspend_handler_inner, (ptr_t)(word)sig);  errno = old_errno;}#else/* We believe that in all other cases the full context is already	*//* in the signal handler frame.						*/void GC_suspend_handler(int sig){  int old_errno = errno;  GC_suspend_handler_inner((ptr_t)(word)sig);  errno = old_errno;}#endifvoid GC_suspend_handler_inner(ptr_t sig_arg){    int sig = (int)(word)sig_arg;    int dummy;    pthread_t my_thread = pthread_self();    GC_thread me;#   ifdef PARALLEL_MARK	word my_mark_no = GC_mark_no;	/* Marker can't proceed until we acknowledge.  Thus this is	*/	/* guaranteed to be the mark_no correspending to our 		*/	/* suspension, i.e. the marker can't have incremented it yet.	*/#   endif    word my_stop_count = GC_stop_count;    if (sig != SIG_SUSPEND) ABORT("Bad signal in suspend_handler");#if DEBUG_THREADS    GC_printf1("Suspending 0x%lx\n", my_thread);#endif    me = GC_lookup_thread(my_thread);    /* The lookup here is safe, since I'm doing this on behalf  */    /* of a thread which holds the allocation lock in order	*/    /* to stop the world.  Thus concurrent modification of the	*/    /* data structure is impossible.				*/    if (me -> stop_info.last_stop_count == my_stop_count) {	/* Duplicate signal.  OK if we are retrying.	*/	if (!GC_retry_signals) {	    WARN("Duplicate suspend signal in thread %lx\n",		 pthread_self());	}	return;    }#   ifdef SPARC	me -> stop_info.stack_ptr = (ptr_t)GC_save_regs_in_stack();#   else	me -> stop_info.stack_ptr = (ptr_t)(&dummy);#   endif#   ifdef IA64	me -> backing_store_ptr = (ptr_t)GC_save_regs_in_stack();#   endif    /* Tell the thread that wants to stop the world that this   */    /* thread has been stopped.  Note that sem_post() is  	*/    /* the only async-signal-safe primitive in LinuxThreads.    */    sem_post(&GC_suspend_ack_sem);    me -> stop_info.last_stop_count = my_stop_count;    /* Wait until that thread tells us to restart by sending    */    /* this thread a SIG_THR_RESTART signal.			*/    /* SIG_THR_RESTART should be masked at this point.  Thus there	*/    /* is no race.						*/    /* We do not continue until we receive a SIG_THR_RESTART,	*/    /* but we do not take that as authoritative.  (We may be	*/    /* accidentally restarted by one of the user signals we 	*/    /* don't block.)  After we receive the signal, we use a 	*/    /* primitive and expensive mechanism to wait until it's	*/    /* really safe to proceed.  Under normal circumstances,	*/    /* this code should not be executed.			*/    sigsuspend(&suspend_handler_mask);        /* Wait for signal */    while (GC_world_is_stopped && GC_stop_count == my_stop_count) {        GC_brief_async_signal_safe_sleep();#       if DEBUG_THREADS	  GC_err_printf0("Sleeping in signal handler");#       endif    }    /* If the RESTART signal gets lost, we can still lose.  That should be  */    /* less likely than losing the SUSPEND signal, since we don't do much   */    /* between the sem_post and sigsuspend.	   			    */    /* We'd need more handshaking to work around that.			    */    /* Simply dropping the sigsuspend call should be safe, but is unlikely  */    /* to be efficient.							    */#if DEBUG_THREADS    GC_printf1("Continuing 0x%lx\n", my_thread);#endif}void GC_restart_handler(int sig){    pthread_t my_thread = pthread_self();    if (sig != SIG_THR_RESTART) ABORT("Bad signal in suspend_handler");    /*    ** Note: even if we don't do anything useful here,    ** it would still be necessary to have a signal handler,    ** rather than ignoring the signals, otherwise    ** the signals will not be delivered at all, and    ** will thus not interrupt the sigsuspend() above.    */#if DEBUG_THREADS    GC_printf1("In GC_restart_handler for 0x%lx\n", pthread_self());#endif}# ifdef IA64#   define IF_IA64(x) x# else#   define IF_IA64(x)# endif/* We hold allocation lock.  Should do exactly the right thing if the	*//* world is stopped.  Should not fail if it isn't.			*/void GC_push_all_stacks(){    GC_bool found_me = FALSE;    int i;    GC_thread p;    ptr_t lo, hi;    /* On IA64, we also need to scan the register backing store. */    IF_IA64(ptr_t bs_lo; ptr_t bs_hi;)    pthread_t me = pthread_self();        if (!GC_thr_initialized) GC_thr_init();

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -