Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 37 of 37 for alarm (0.04 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_s390x.go

    	{9, "SIGKILL", "killed"},
    	{10, "SIGUSR1", "user defined signal 1"},
    	{11, "SIGSEGV", "segmentation fault"},
    	{12, "SIGUSR2", "user defined signal 2"},
    	{13, "SIGPIPE", "broken pipe"},
    	{14, "SIGALRM", "alarm clock"},
    	{15, "SIGTERM", "terminated"},
    	{16, "SIGSTKFLT", "stack fault"},
    	{17, "SIGCHLD", "child exited"},
    	{18, "SIGCONT", "continued"},
    	{19, "SIGSTOP", "stopped (signal)"},
    	{20, "SIGTSTP", "stopped"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 36.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_linux_ppc.go

    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Alarm(seconds uint) (remaining uint, err error) {
    	r0, _, e1 := Syscall(SYS_ALARM, uintptr(seconds), 0, 0)
    	remaining = uint(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 16.8K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zerrors_zos_s390x.go

    	{9, "SIGKILL", "killed"},
    	{10, "SIGBUS", "bus error"},
    	{11, "SIGSEGV", "segmentation fault"},
    	{12, "SIGSYS", "bad argument to routine"},
    	{13, "SIGPIPE", "broken pipe"},
    	{14, "SIGALRM", "alarm clock"},
    	{15, "SIGTERM", "terminated"},
    	{16, "SIGUSR1", "user defined signal 1"},
    	{17, "SIGUSR2", "user defined signal 2"},
    	{18, "SIGABND", "abend"},
    	{19, "SIGCONT", "continued"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  4. src/cmd/cgo/internal/test/test.go

    	)
    
    	signal.Notify(sigCh, sig)
    
    	go func() {
    		n := 0
    		alarm := time.After(time.Second * 3)
    		for {
    			select {
    			case <-waitStart:
    				waitStart = nil
    			case v := <-sigCh:
    				n++
    				if v != sig || n > thres {
    					waitDone <- result{n, v}
    					return
    				}
    			case <-alarm:
    				waitDone <- result{n, sig}
    				return
    			}
    		}
    	}()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  5. src/runtime/signal_unix.go

    //
    // 3. It should be a signal that can happen spuriously without
    // consequences. For example, SIGALRM is a bad choice because the
    // signal handler can't tell if it was caused by the real process
    // alarm or not (arguably this means the signal is broken, but I
    // digress). SIGUSR1 and SIGUSR2 are also bad because those are often
    // used in meaningful ways by applications.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 16:04:54 UTC 2024
    - 45K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/x86/aenum.go

    	AKTESTB
    	AKTESTD
    	AKTESTQ
    	AKTESTW
    	AKUNPCKBW
    	AKUNPCKDQ
    	AKUNPCKWD
    	AKXNORB
    	AKXNORD
    	AKXNORQ
    	AKXNORW
    	AKXORB
    	AKXORD
    	AKXORQ
    	AKXORW
    	ALAHF
    	ALARL
    	ALARQ
    	ALARW
    	ALDDQU
    	ALDMXCSR
    	ALEAL
    	ALEAQ
    	ALEAVEL
    	ALEAVEQ
    	ALEAVEW
    	ALEAW
    	ALFENCE
    	ALFSL
    	ALFSQ
    	ALFSW
    	ALGDT
    	ALGSL
    	ALGSQ
    	ALGSW
    	ALIDT
    	ALLDT
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 18:32:50 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/s390x/a.out.go

    	ACMPBNE
    	ACMPUBEQ
    	ACMPUBGE
    	ACMPUBGT
    	ACMPUBLE
    	ACMPUBLT
    	ACMPUBNE
    
    	// storage-and-storage
    	AMVC
    	AMVCIN
    	ACLC
    	AXC
    	AOC
    	ANC
    
    	// load
    	AEXRL
    	ALARL
    	ALA
    	ALAY
    
    	// interlocked load and op
    	ALAA
    	ALAAG
    	ALAAL
    	ALAALG
    	ALAN
    	ALANG
    	ALAX
    	ALAXG
    	ALAO
    	ALAOG
    
    	// load/store multiple
    	ALMY
    	ALMG
    	ASTMY
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 16:41:03 UTC 2023
    - 12.4K bytes
    - Viewed (0)
Back to top