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:
parent
78853170f8
commit
9d8ce7688f
1 changed files with 1 additions and 0 deletions
|
@ -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)
|
||||||
|
|
Reference in a new issue