kitty/tools/utils/io.go
Kovid Goyal 4a49c3940a
Switch to using goroutines rather than a select()
More complex code since now we have to synchronize between threads,
but a good way to teach myself more about goroutines.
2022-11-14 15:41:52 +05:30

8 lines
131 B
Go

// License: GPLv3 Copyright: 2022, Kovid Goyal, <kovid at kovidgoyal.net>
package utils
const (
DEFAULT_IO_BUFFER_SIZE = 8192
)