Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for traceallocfree (0.34 sec)

  1. src/runtime/traceallocfree.go

    Michael Anthony Knyszek <******@****.***> 1716264940 +0000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:32:51 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  2. src/runtime/runtime1.go

    	// set to "true" if it isn't already while tracing is enabled.
    	// It will be set while the world is stopped, so it's safe.
    	// The value of traceallocfree can be changed any time in response
    	// to os.Setenv("GODEBUG").
    	traceallocfree atomic.Int32
    
    	panicnil atomic.Int32
    
    	// asynctimerchan controls whether timer channels
    	// behave asynchronously (as in Go 1.22 and earlier)
    	// instead of their Go 1.23+ synchronous behavior.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  3. src/internal/trace/trace_test.go

    		}
    		runTest(t, true, "")
    	})
    	t.Run("AllocFree", func(t *testing.T) {
    		if testing.Short() {
    			t.Skip("skipping trace alloc/free tests in short mode")
    		}
    		runTest(t, false, "traceallocfree=1")
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  4. src/runtime/trace.go

    	// we only make this transition with the world stopped and use the store to gen
    	// as a publication barrier.
    	enabled bool
    
    	// enabledWithAllocFree is set if debug.traceallocfree is != 0 when tracing begins.
    	// It follows the same synchronization protocol as enabled.
    	enabledWithAllocFree bool
    
    	// Trace generation counter.
    	gen            atomic.Uintptr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 37.1K bytes
    - Viewed (0)
Back to top