Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 761 for islibrary (0.2 sec)

  1. src/runtime/signal_unix.go

    	if !preinit {
    		// It's now OK for signal handlers to run.
    		signalsOK = true
    	}
    
    	// For c-archive/c-shared this is called by libpreinit with
    	// preinit == true.
    	if (isarchive || islibrary) && !preinit {
    		return
    	}
    
    	for i := uint32(0); i < _NSIG; i++ {
    		t := &sigtable[i]
    		if t.flags == 0 || t.flags&_SigDefault != 0 {
    			continue
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 16:04:54 UTC 2024
    - 45K bytes
    - Viewed (0)
  2. src/runtime/os_freebsd.go

    	// present. To avoid this confusion, explicitly disable the
    	// signal stack on the main thread when not running in a
    	// library. This can be removed when we are confident that all
    	// FreeBSD users are running a patched kernel. See issue #15658.
    	if gp := getg(); !isarchive && !islibrary && gp.m == &m0 && gp == gp.m.g0 {
    		st := stackt{ss_flags: _SS_DISABLE}
    		sigaltstack(&st, nil)
    	}
    
    	minitSignals()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  3. src/runtime/signal_windows.go

    //
    // It is nosplit for the same reason as exceptionhandler.
    //
    //go:nosplit
    func lastcontinuehandler(info *exceptionrecord, r *context, gp *g) int32 {
    	if islibrary || isarchive {
    		// Go DLL/archive has been loaded in a non-go program.
    		// If the exception does not originate from go, the go runtime
    		// should not take responsibility of crashing the process.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 20:32:29 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  4. src/runtime/runtime1.go

    			t |= uint32(n) << tracebackShift
    		}
    	}
    	// when C owns the process, simply exit'ing the process on fatal errors
    	// and panics is surprising. Be louder and abort instead.
    	if islibrary || isarchive {
    		t |= tracebackCrash
    	}
    
    	t |= traceback_env
    
    	atomic.Store(&traceback_cache, t)
    }
    
    // Poor mans 64-bit division.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  5. src/runtime/runtime2.go

    // See go.dev/issue/67401.
    //
    //go:linkname goarm
    var (
    	goarm       uint8
    	goarmsoftfp uint8
    )
    
    // Set by the linker so the runtime can determine the buildmode.
    var (
    	islibrary bool // -buildmode=c-shared
    	isarchive bool // -buildmode=c-archive
    )
    
    // Must agree with internal/buildcfg.FramePointerEnabled.
    const framepointer_enabled = GOARCH == "amd64" || GOARCH == "arm64"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/img/swift-library-configurations.png

    swift-library-configurations.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/img/cpp-library-configurations.png

    cpp-library-configurations.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/img/java-library-ignore-deprecated.png

    java-library-ignore-deprecated.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 22.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/img/swift-static-library-task-graph.png

    swift-static-library-task-graph.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/img/java-library-ignore-deprecated-main.png

    java-library-ignore-deprecated-main.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 11.5K bytes
    - Viewed (0)
Back to top