Re: [PATCH v3 2/2] linux-user: call set/getscheduler set/getparam directly

2021-12-23 Thread Laurent Vivier
Le 23/12/2021 à 07:47, Tonis Tiigi a écrit : There seems to be difference in syscall and libc definition of these methods and therefore musl does not implement them (1e21e78bf7). Call syscall directly to ensure the behavior of the libc of user application, not the libc that was used to build

Re: [PATCH v3 2/2] linux-user: call set/getscheduler set/getparam directly

2021-12-23 Thread Laurent Vivier
Le 23/12/2021 à 07:47, Tonis Tiigi a écrit : There seems to be difference in syscall and libc definition of these methods and therefore musl does not implement them (1e21e78bf7). Call syscall directly to ensure the behavior of the libc of user application, not the libc that was used to build

[PATCH v3 2/2] linux-user: call set/getscheduler set/getparam directly

2021-12-23 Thread Tonis Tiigi
There seems to be difference in syscall and libc definition of these methods and therefore musl does not implement them (1e21e78bf7). Call syscall directly to ensure the behavior of the libc of user application, not the libc that was used to build QEMU. Signed-off-by: Tonis Tiigi ---