1
1
mirror of https://github.com/mawww/kakoune.git synced 2024-11-13 06:37:20 +03:00
kakoune/test/regression/4859-regex-invalid-behaviour
Maxime Coste cb3512f01e Grow dual thread stack after pushing a thread on the next queue
The previous code was assuming it was fine to push_next without
growing, which used to be the case with the previous implementation
because we always have poped the current thread that we try to push.

However now that we use a ring-buffer, m_next_begin == m_next_end can
either mean full, or empty. We solve this by assuming it means empty
and never allowing the buffer to become full, which means we need
to grow after pushing to next if we get full.

Fixes #4859
2023-03-13 22:45:19 +11:00
..
cmd Grow dual thread stack after pushing a thread on the next queue 2023-03-13 22:45:19 +11:00
in Grow dual thread stack after pushing a thread on the next queue 2023-03-13 22:45:19 +11:00
out Grow dual thread stack after pushing a thread on the next queue 2023-03-13 22:45:19 +11:00
rc Grow dual thread stack after pushing a thread on the next queue 2023-03-13 22:45:19 +11:00