mirror of
https://github.com/kovidgoyal/kitty.git
synced 2024-11-11 01:28:19 +03:00
4a49c3940a
More complex code since now we have to synchronize between threads, but a good way to teach myself more about goroutines.
8 lines
131 B
Go
8 lines
131 B
Go
// License: GPLv3 Copyright: 2022, Kovid Goyal, <kovid at kovidgoyal.net>
|
|
|
|
package utils
|
|
|
|
const (
|
|
DEFAULT_IO_BUFFER_SIZE = 8192
|
|
)
|