Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Rosetti (0.15 sec)

  1. src/runtime/pprof/proto_darwin.go

    	first := true
    	ok := machVMInfo(func(lo, hi, off uint64, file, build string) {
    		if first {
    			start, end = lo, hi
    			exe, buildID = file, build
    		}
    		// May see multiple text segments if rosetta is used for running
    		// the go toolchain itself.
    		first = false
    	})
    	if !ok {
    		return 0, 0, "", "", errors.New("machVMInfo failed")
    	}
    	return start, end, exe, buildID, nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 03 16:07:59 UTC 2023
    - 1K bytes
    - Viewed (0)
  2. src/runtime/pprof/vminfo_darwin_test.go

    	first := true
    	machVMInfo(func(lo, hi, off uint64, file, buildID string) {
    		if first {
    			begin = lo
    			end = hi
    			offset = off
    			filename = file
    		}
    		// May see multiple text segments if rosetta is used for running
    		// the go toolchain itself.
    		first = false
    	})
    	lo, hi, err := useVMMapWithRetry(t)
    	if err != nil {
    		t.Fatal(err)
    	}
    	if got, want := begin, lo; got != want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 19:59:50 UTC 2024
    - 5.5K bytes
    - Viewed (0)
Back to top