Re: [Toybox] [PATCH] top: don't report GiB sizes in KiB.

2020-09-08 Thread Rob Landley
On 9/8/20 12:20 AM, Jarno Mäkipää wrote: > Im sorry didint want to cause argument. I was happy with the big long strings of numbers we had to start with. I just don't consider "make the strings shorter with no other change/reason" to be a fix. > But atleast 1/3 of world teach > to use comma as

Re: [Toybox] [PATCH] SIGHUP to init.c triggers inittab reload

2020-09-08 Thread Chris Sarra via Toybox
Thanks Rob, and no worries- I've been able to use the init.c for a few months now, with only that patch. So hopefully cleanup won't be so bad! :) +Chris On Tue, Sep 1, 2020 at 11:16 PM Rob Landley wrote: > On 9/1/20 9:22 PM, Chris Sarra via Toybox wrote: > > --- > > toys/pending/init.c | 25

Re: [Toybox] [PATCH] top: don't report GiB sizes in KiB.

2020-09-08 Thread enh via Toybox
On Mon, Sep 7, 2020 at 1:29 PM Rob Landley wrote: > On 9/6/20 6:45 AM, Jarno Mäkipää wrote: > > On Sun, Sep 6, 2020 at 12:34 PM Rob Landley wrote: > >> Elliott says there's a maximum limit on the number of digits users are > willing > >> to parse, and you're saying it's better to just have

Re: [Toybox] Android binaries?

2020-09-08 Thread enh via Toybox
On Thu, Sep 3, 2020 at 11:34 PM Rob Landley wrote: > On 9/3/20 10:02 AM, enh wrote: > > Isn't it 6 digits now? 99 processes? (Didn't we have this > discussion already > > about ps? In theory top inherits that code...) > > > > > > Yes, but my desktop has 7 digits (now at least --- I

[Toybox] [PATCH] logger.c was failing to properly log local0-local6 facilities, due to a string parsing error. This patch enables proper local facility handling.

2020-09-08 Thread Chris Sarra via Toybox
--- toys/posix/logger.c | 7 --- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/toys/posix/logger.c b/toys/posix/logger.c index 3bcfb174..d1cc7291 100644 --- a/toys/posix/logger.c +++ b/toys/posix/logger.c @@ -64,9 +64,10 @@ void logger_main(void) else { *s1++ = len

Re: [Toybox] [PATCH] logger.c was failing to properly log local0-local6 facilities, due to a string parsing error. This patch enables proper local facility handling.

2020-09-08 Thread Rob Landley
On 9/8/20 2:16 PM, Chris Sarra via Toybox wrote: > --- > toys/posix/logger.c | 7 --- > 1 file changed, 4 insertions(+), 3 deletions(-) > > diff --git a/toys/posix/logger.c b/toys/posix/logger.c > index 3bcfb174..d1cc7291 100644 > --- a/toys/posix/logger.c > +++ b/toys/posix/logger.c > @@