Skip to content

Commit

Permalink
No separate acceptor loop for picoev async mode
Browse files Browse the repository at this point in the history
[docker_verify]
  • Loading branch information
sumeetchhetri committed Jul 14, 2024
1 parent b66c41a commit 37b7eda
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lang-server-backends/v/pico.v/main.v
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ fn main() {
println('Bootstrapping ffead-cpp end...')

if is_async {
mut pv = picoev.new(server_port, &callback_async, &open_cb_async, &close_cb_async, &C.ffead_cpp_handle_picov_ext_fd_cb, true, true)
mut pv = picoev.new(server_port, &callback_async, &open_cb_async, &close_cb_async, &C.ffead_cpp_handle_picov_ext_fd_cb, true, false)
} else {
mut pv = picoev.new(server_port, &callback, &open_cb_async, &close_cb_async, &C.ffead_cpp_handle_picov_ext_fd_cb, false, true)
}
Expand Down

0 comments on commit 37b7eda

Please # to comment.