Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for SIGSYNCCALL (0.12 sec)

  1. src/runtime/sigtab_linux_generic.go

    	/* 33 */ {_SigSetStack + _SigUnblock, "signal 33"}, /* SIGSETXID; see issues 3871, 9400, 12498 */
    	/* 34 */ {_SigSetStack + _SigUnblock, "signal 34"}, /* musl SIGSYNCCALL; see issue 39343 */
    	/* 35 */ {_SigNotify, "signal 35"},
    	/* 36 */ {_SigNotify, "signal 36"},
    	/* 37 */ {_SigNotify, "signal 37"},
    	/* 38 */ {_SigNotify, "signal 38"},
    	/* 39 */ {_SigNotify, "signal 39"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  2. src/runtime/sigtab_linux_mipsx.go

    	/*  33 */ {_SigSetStack + _SigUnblock, "signal 33"}, /* SIGSETXID; see issues 3871, 9400, 12498 */
    	/*  34 */ {_SigSetStack + _SigUnblock, "signal 34"}, /* musl SIGSYNCCALL; see issue 39343 */
    	/*  35 */ {_SigNotify, "signal 35"},
    	/*  36 */ {_SigNotify, "signal 36"},
    	/*  37 */ {_SigNotify, "signal 37"},
    	/*  38 */ {_SigNotify, "signal 38"},
    	/*  39 */ {_SigNotify, "signal 39"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 6K bytes
    - Viewed (0)
  3. src/runtime/signal_unix.go

    		// these signals are blocked. Thus, don't block these
    		// signals when exiting threads.
    		// - glibc: SIGCANCEL (32), SIGSETXID (33)
    		// - musl: SIGTIMER (32), SIGCANCEL (33), SIGSYNCCALL (34)
    		sigdelset(&res, 32)
    		sigdelset(&res, 33)
    		sigdelset(&res, 34)
    	}
    
    	return res
    }()
    
    // sigblock blocks signals in the current thread's signal mask.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 16:04:54 UTC 2024
    - 45K bytes
    - Viewed (0)
Back to top