Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for clearSignalHandlers (0.45 sec)

  1. src/runtime/os_wasm.go

    func usleep_no_g(usec uint32) {
    	usleep(usec)
    }
    
    //go:nosplit
    func sigsave(p *sigset) {
    }
    
    //go:nosplit
    func msigrestore(sigmask sigset) {
    }
    
    //go:nosplit
    //go:nowritebarrierrec
    func clearSignalHandlers() {
    }
    
    //go:nosplit
    func sigblock(exiting bool) {
    }
    
    // Called to initialize a new m (including the bootstrap m).
    // Called on the new thread, cannot allocate memory.
    func minit() {
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. src/runtime/os_plan9.go

    	mp.errstr = (*byte)(mallocgc(_ERRMAX, nil, true))
    }
    
    func sigsave(p *sigset) {
    }
    
    func msigrestore(sigmask sigset) {
    }
    
    //go:nosplit
    //go:nowritebarrierrec
    func clearSignalHandlers() {
    }
    
    func sigblock(exiting bool) {
    }
    
    // Called to initialize a new m (including the bootstrap m).
    // Called on the new thread, cannot allocate memory.
    func minit() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  3. src/runtime/signal_unix.go

    		setsig(sig, _SIG_IGN)
    	}
    }
    
    // clearSignalHandlers clears all signal handlers that are not ignored
    // back to the default. This is called by the child after a fork, so that
    // we can enable the signal mask for the exec without worrying about
    // running a signal handler in the child.
    //
    //go:nosplit
    //go:nowritebarrierrec
    func clearSignalHandlers() {
    	for i := uint32(0); i < _NSIG; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 16:04:54 UTC 2024
    - 45K bytes
    - Viewed (0)
  4. src/runtime/os_windows.go

    func mpreinit(mp *m) {
    }
    
    //go:nosplit
    func sigsave(p *sigset) {
    }
    
    //go:nosplit
    func msigrestore(sigmask sigset) {
    }
    
    //go:nosplit
    //go:nowritebarrierrec
    func clearSignalHandlers() {
    }
    
    //go:nosplit
    func sigblock(exiting bool) {
    }
    
    // Called to initialize a new m (including the bootstrap m).
    // Called on the new thread, cannot allocate Go memory.
    func minit() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 41.5K bytes
    - Viewed (0)
  5. src/runtime/proc.go

    	// because if we are sharing address space with the parent process,
    	// then the parent process can not be running concurrently.
    	inForkedChild = true
    
    	clearSignalHandlers()
    
    	// When we are the child we are the only thread running,
    	// so we know that nothing else has changed gp.m.sigmask.
    	msigrestore(getg().m.sigmask)
    
    	inForkedChild = false
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
Back to top