Merge pull request #106 from akuker/stdout-buffering-fix

Stdout buffering fix
This commit is contained in:
akuker
2021-06-01 20:05:50 -05:00
committed by GitHub

View File

@@ -1121,6 +1121,8 @@ int main(int argc, char* argv[])
DWORD now; DWORD now;
BUS::phase_t phase; BUS::phase_t phase;
BYTE data; BYTE data;
// added setvbuf to override stdout buffering, so logs are written immediately and not when the process exits.
setvbuf(stdout, NULL, _IONBF, 0);
#ifndef BAREMETAL #ifndef BAREMETAL
struct sched_param schparam; struct sched_param schparam;
#endif // BAREMETAL #endif // BAREMETAL