Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/internal/poll/splice_linux.go

    // The garbage collector will free all pipes in the sync.Pool periodically, thus we need to set up
    // a finalizer for each pipe to close its file descriptors before the actual GC.
    var splicePipePool = sync.Pool{New: newPoolPipe}
    
    func newPoolPipe() any {
    	// Discard the error which occurred during the creation of pipe buffer,
    	// redirecting the data transmission to the conventional way utilizing read() + write() as a fallback.
    	p := newPipe()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:49:26 UTC 2024
    - 7.6K bytes
    - Viewed (0)
Back to top