1
0
Fork 0
mirror of https://github.com/hermitcore/libhermit.git synced 2025-03-09 00:00:03 +01:00

increase the readability

This commit is contained in:
Stefan Lankes 2016-03-14 17:49:16 +01:00
parent bbf6957883
commit 5f03c0efcf

View file

@ -580,10 +580,13 @@ int sys_stat(const char* file, /*struct stat *st*/ void* st)
void sys_yield(void)
{
//check_workqueues();
if (go_down)
#if 0
check_workqueues();
#else
if (BUILTIN_EXPECT(go_down, 0))
shutdown_system();
check_scheduling();
#endif
}
#if 0