mirror of
https://github.com/tio/tio.git
synced 2026-05-01 14:57:59 +02:00
Add threaded input handling
To make tio more responsive to quit and I/O flush key command when main I/O thread is blocked on output.
This commit is contained in:
parent
12f20c84e3
commit
93e6efc001
5 changed files with 123 additions and 9 deletions
|
|
@ -20,9 +20,12 @@ tio_sources = [
|
|||
'alert.c'
|
||||
]
|
||||
|
||||
tio_dep = dependency('inih', required: true,
|
||||
tio_dep = [
|
||||
dependency('threads', required: true),
|
||||
dependency('inih', required: true,
|
||||
fallback : ['libinih', 'inih_dep'],
|
||||
default_options: ['default_library=static', 'distro_install=false'])
|
||||
]
|
||||
|
||||
tio_c_args = ['-Wno-unused-result']
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue