(ctx any)
| 118 | ) |
| 119 | |
| 120 | func stacklessWriteZstd(ctx any) { |
| 121 | stacklessWriteZstdOnce.Do(func() { |
| 122 | stacklessWriteZstdFunc = stackless.NewFunc(nonblockingWriteZstd) |
| 123 | }) |
| 124 | stacklessWriteZstdFunc(ctx) |
| 125 | } |
| 126 | |
| 127 | func nonblockingWriteZstd(ctxv any) { |
| 128 | ctx := ctxv.(*compressCtx) |
no test coverage detected
searching dependent graphs…