Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for goCallbackPprof (0.1 sec)

  1. src/runtime/testdata/testprogcgo/pprof_callback.go

    //
    // This is a regression test for issue 50936.
    
    /*
    #include <unistd.h>
    
    void goCallbackPprof();
    
    static void callGo() {
    	// Spent >20us in C so this thread is eligible for sysmon to retake its
    	// P.
    	usleep(50);
    	goCallbackPprof();
    }
    */
    import "C"
    
    import (
    	"fmt"
    	"os"
    	"runtime"
    	"runtime/pprof"
    	"time"
    )
    
    func init() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 08 15:44:05 UTC 2022
    - 1.8K bytes
    - Viewed (0)
Back to top