Fix usleep for small values

This commit is contained in:
Mathieu Maret 2024-02-16 00:47:47 +01:00 committed by Mathieu Maret
parent 4204087bd1
commit e0c392c16e
2 changed files with 3 additions and 0 deletions

View File

@ -331,6 +331,8 @@ int threadUsleep(unsigned long usec)
current->state = SLEEPING;
current->sleepHaveTimeouted = 0;
current->jiffiesSleeping = usecs_to_jiffies(usec);
if (!current->jiffiesSleeping) // sleep at least 1 jiffies
current->jiffiesSleeping = 1;
next = threadSelectNext();
assert(next != current);

View File

@ -124,6 +124,7 @@ int func_munmap()
static void *print_hello(void *arg) {
(void)arg;
printf("Hello World from thread %lu\n", gettid());
usleep(100);
return NULL;
}