(code int64, msg string, args ...any)
| 43 | } |
| 44 | |
| 45 | func ipcErrorf(code int64, msg string, args ...any) *IPCError { |
| 46 | return &IPCError{code: code, err: fmt.Errorf(msg, args...)} |
| 47 | } |
| 48 | |
| 49 | var byteBufferPool = &sync.Pool{ |
| 50 | New: func() any { return new(bytes.Buffer) }, |
no outgoing calls
no test coverage detected