Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for deferDeleteTempFile (0.18 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/driver/tempfile.go

    	}
    	// Give up
    	return nil, fmt.Errorf("could not create file of the form %s%03d%s", prefix, 1, suffix)
    }
    
    var tempFiles []string
    var tempFilesMu = sync.Mutex{}
    
    // deferDeleteTempFile marks a file to be deleted by next call to Cleanup()
    func deferDeleteTempFile(path string) {
    	tempFilesMu.Lock()
    	tempFiles = append(tempFiles, path)
    	tempFilesMu.Unlock()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 22 23:33:06 UTC 2020
    - 1.7K bytes
    - Viewed (0)
Back to top