Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for callCgoSigaction (0.14 sec)

  1. src/runtime/cgo_sigaction.go

    			// No g: we're on a C stack or a signal stack.
    			ret = callCgoSigaction(uintptr(sig), new, old)
    		case sp < g.stack.lo || sp >= g.stack.hi:
    			// We're no longer on g's stack, so we must be handling a signal.  It's
    			// possible that we interrupted the thread during a transition between g
    			// and g0, so we should stay on the current stack to avoid corrupting g0.
    			ret = callCgoSigaction(uintptr(sig), new, old)
    		default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  2. src/runtime/stubs_ppc64.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build linux
    
    package runtime
    
    // This is needed for vet.
    //
    //go:noescape
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 302 bytes
    - Viewed (0)
Back to top