The stream stderr is unbuffered as a default. but make sure to be unbuffered
just in case printf redirection in runtime.
Change-Id: I451ecbcc2590539079c482f83c239bd3dd2b5641
# endif
#endif
- /* for debugging by redirecting stdout of e to a log file to tail */
+ /* for debugging by redirecting stdout & stderr of e to a log file to tail */
setvbuf(stdout, NULL, _IONBF, 0);
+ setvbuf(stderr, NULL, _IONBF, 0);
#ifdef TS_DO
t0 = t1 = t2 = ecore_time_unix_get();