adding yield before returning from readline

so that highway really, truly gets its newline in before the called program gets anything it sends in
This commit is contained in:
Benji Dial 2021-02-17 18:49:36 -05:00
parent 78853170f8
commit 9d8ce7688f

View file

@ -73,6 +73,7 @@ uint32_t read_line(char *sz, uint32_t max_length, const char *prompt) {
sz[l] = '\0'; sz[l] = '\0';
term_add_char('\n'); term_add_char('\n');
term_paint(); term_paint();
_yield_task();
return l; return l;
default: default:
if (l == max_length) if (l == max_length)