Re: [PATCH] timeout: support sub-second timeouts on macOS

2020-11-08 Thread Jim Meyering
On Sun, Nov 8, 2020 at 1:26 PM Pádraig Brady wrote: > On 08/11/2020 18:52, Jim Meyering wrote: > > On Sat, Nov 7, 2020 at 2:08 PM Pádraig Brady wrote: > >> * m4/jm-macros.m4: Check for setitimer. > >> * src/timeout.c: Use setitimer if timer_settime is not available. > >> * NEWS: Mention the impro

Re: [PATCH] timeout: support sub-second timeouts on macOS

2020-11-08 Thread Pádraig Brady
On 08/11/2020 18:52, Jim Meyering wrote: On Sat, Nov 7, 2020 at 2:08 PM Pádraig Brady wrote: * m4/jm-macros.m4: Check for setitimer. * src/timeout.c: Use setitimer if timer_settime is not available. * NEWS: Mention the improvement. Thanks! The patch looks fine and I confirmed it works. I enc

Re: [PATCH] timeout: support sub-second timeouts on macOS

2020-11-08 Thread Jim Meyering
On Sat, Nov 7, 2020 at 2:08 PM Pádraig Brady wrote: > * m4/jm-macros.m4: Check for setitimer. > * src/timeout.c: Use setitimer if timer_settime is not available. > * NEWS: Mention the improvement. Thanks! The patch looks fine and I confirmed it works. I encountered a few hurdles to make everythi

sort TODO: Investigate better sorting algorithms

2020-11-08 Thread Siddharth Karandikar
Hi, I was looking at TODOs and one of the items is investigating a better sorting algorithm for sort. It is mentioned that previous attempts of using list merge sort resulted in more comparisons and was bottleneck. I am interested in investigating this issue further and also try to implement and