Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 164 for sigblock (0.13 sec)

  1. src/runtime/os_wasm.go

    }
    
    //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() {
    }
    
    // Called from dropm to undo the effect of an 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/signal_unix.go

    			}
    		}
    		sigprocmask(_SIG_SETMASK, &sigBlocked, nil)
    		for {
    			select {
    			case sig := <-enableSigChan:
    				if sig > 0 {
    					sigdelset(&sigBlocked, int(sig))
    				}
    			case sig := <-disableSigChan:
    				if sig > 0 && blockableSig(sig) {
    					sigaddset(&sigBlocked, int(sig))
    				}
    			}
    			sigprocmask(_SIG_SETMASK, &sigBlocked, nil)
    			maskUpdatedChan <- struct{}{}
    		}
    	}()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 16:04:54 UTC 2024
    - 45K bytes
    - Viewed (0)
  3. src/runtime/os_plan9.go

    }
    
    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() {
    	if atomic.Load(&exiting) != 0 {
    		exits(&emptystatus[0])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  4. src/runtime/os_windows.go

    //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() {
    	var thandle uintptr
    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

    		handoffp(releasep())
    		lock(&sched.lock)
    		sched.nmfreed++
    		checkdead()
    		unlock(&sched.lock)
    		mPark()
    		throw("locked m0 woke up")
    	}
    
    	sigblock(true)
    	unminit()
    
    	// Free the gsignal stack.
    	if mp.gsignal != nil {
    		stackfree(mp.gsignal.stack)
    		// On some platforms, when calling into VDSO (e.g. nanotime)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  6. pkg/volume/csi/csi_block.go

    Rohit Singh <******@****.***> 1693531995 +0000
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 11 06:07:40 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  7. src/runtime/defs_aix.go

    	_O_RDONLY   = C.O_RDONLY
    	_O_WRONLY   = C.O_WRONLY
    	_O_NONBLOCK = C.O_NONBLOCK
    	_O_CREAT    = C.O_CREAT
    	_O_TRUNC    = C.O_TRUNC
    
    	_SS_DISABLE  = C.SS_DISABLE
    	_SI_USER     = C.SI_USER
    	_SIG_BLOCK   = C.SIG_BLOCK
    	_SIG_UNBLOCK = C.SIG_UNBLOCK
    	_SIG_SETMASK = C.SIG_SETMASK
    
    	_SA_SIGINFO = C.SA_SIGINFO
    	_SA_RESTART = C.SA_RESTART
    	_SA_ONSTACK = C.SA_ONSTACK
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 20 21:27:51 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  8. src/cmd/cgo/internal/test/sigprocmask.c

    #include <unistd.h>
    
    extern void IntoGoAndBack();
    
    int CheckBlocked() {
    	sigset_t mask;
    	sigprocmask(SIG_BLOCK, NULL, &mask);
    	return sigismember(&mask, SIGIO);
    }
    
    static void* sigthreadfunc(void* unused) {
    	sigset_t mask;
    	sigemptyset(&mask);
    	sigaddset(&mask, SIGIO);
    	sigprocmask(SIG_BLOCK, &mask, NULL);
    	IntoGoAndBack();
    	return NULL;
    }
    
    int RunSigThread() {
    	int tries;
    	pthread_t thread;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 1K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_mips64.go

    }
    
    const (
    	OPEN_TREE_CLOEXEC = 0x80000
    )
    
    const (
    	POLLRDHUP = 0x2000
    )
    
    type Sigset_t struct {
    	Val [16]uint64
    }
    
    const _C__NSIG = 0x80
    
    const (
    	SIG_BLOCK   = 0x1
    	SIG_UNBLOCK = 0x2
    	SIG_SETMASK = 0x3
    )
    
    type Siginfo struct {
    	Signo int32
    	Code  int32
    	Errno int32
    	_     int32
    	_     [112]byte
    }
    
    type Termios struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_mipsle.go

    }
    
    const (
    	OPEN_TREE_CLOEXEC = 0x80000
    )
    
    const (
    	POLLRDHUP = 0x2000
    )
    
    type Sigset_t struct {
    	Val [32]uint32
    }
    
    const _C__NSIG = 0x80
    
    const (
    	SIG_BLOCK   = 0x1
    	SIG_UNBLOCK = 0x2
    	SIG_SETMASK = 0x3
    )
    
    type Siginfo struct {
    	Signo int32
    	Code  int32
    	Errno int32
    	_     [116]byte
    }
    
    type Termios struct {
    	Iflag  uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.3K bytes
    - Viewed (0)
Back to top