Re: [PATCH] chrt: support for musl C library

2020-11-15 Thread Denys Vlasenko
Applied with some edits, thank you. On Fri, Sep 11, 2020 at 6:18 PM Christian Eggers wrote: > > musl "implements" several sched_xxx() functions by returning ENOSYS. As > an alternative, either pthread_(g|s)etschedparam() or direct syscalls > can be used. > > References: >

Re: [PATCH] chrt: support for musl C library

2020-11-11 Thread Fryderyk Wrobel
Hi, It just came back to me. I submitted a similar patch over a year ago. http://lists.busybox.net/pipermail/busybox/2019-July/087387.html Kind Regards, Fryderyk ___ busybox mailing list busybox@busybox.net

Re: [PATCH] chrt: support for musl C library

2020-11-11 Thread Rob Landley
On 11/10/20 12:59 PM, Denys Vlasenko wrote: > On Fri, Sep 11, 2020 at 6:18 PM Christian Eggers wrote: >> musl "implements" several sched_xxx() functions by returning ENOSYS. As >> an alternative, either pthread_(g|s)etschedparam() or direct syscalls >> can be used. >> >> References: >>

Re: [PATCH] chrt: support for musl C library

2020-11-10 Thread Emmanuel Deloget
Hello, - Mail original - > On Fri, Sep 11, 2020 at 6:18 PM Christian Eggers > wrote: > > musl "implements" several sched_xxx() functions by returning > > ENOSYS. As > > an alternative, either pthread_(g|s)etschedparam() or direct > > syscalls > > can be used. > > > > References: > >

Re: [PATCH] chrt: support for musl C library

2020-11-10 Thread Denys Vlasenko
On Fri, Sep 11, 2020 at 6:18 PM Christian Eggers wrote: > musl "implements" several sched_xxx() functions by returning ENOSYS. As > an alternative, either pthread_(g|s)etschedparam() or direct syscalls > can be used. > > References: >

Re: [PATCH] chrt: support for musl C library

2020-10-16 Thread Rob Landley
On 10/15/20 6:26 AM, Christian Eggers wrote: > Hi Bernhard, > > On Thursday, 15 October 2020, 11:40:03 CEST, Bernhard Reutner-Fischer wrote: >> On Fri, 11 Sep 2020 17:45:38 +0200 >> >> Christian Eggers wrote: >>> musl "implements" several sched_xxx() functions by returning ENOSYS. As >>> an

Re: [PATCH] chrt: support for musl C library

2020-10-15 Thread Christian Eggers
Hi Bernhard, On Thursday, 15 October 2020, 11:40:03 CEST, Bernhard Reutner-Fischer wrote: > On Fri, 11 Sep 2020 17:45:38 +0200 > > Christian Eggers wrote: > > musl "implements" several sched_xxx() functions by returning ENOSYS. As > > an alternative, either pthread_(g|s)etschedparam() or direct

Re: [PATCH] chrt: support for musl C library

2020-10-15 Thread Bernhard Reutner-Fischer
On Fri, 11 Sep 2020 17:45:38 +0200 Christian Eggers wrote: > musl "implements" several sched_xxx() functions by returning ENOSYS. As > an alternative, either pthread_(g|s)etschedparam() or direct syscalls > can be used. I don't like using the syscalls directly in the way you propose below.

[PATCH] chrt: support for musl C library

2020-09-11 Thread Christian Eggers
musl "implements" several sched_xxx() functions by returning ENOSYS. As an alternative, either pthread_(g|s)etschedparam() or direct syscalls can be used. References: