Re: [hackers] [scron] [PATCH 1/3] Just use simple linked list instead of queue.h

2017-07-12 Thread Anselm R Garbe
On 12 July 2017 at 12:01, Dimitris Papastamos wrote: > On Tue, Jul 11, 2017 at 10:49:53AM -0700, Michael Forney wrote: >> On 7/11/17, Laslo Hunhold wrote: >> > On Mon, 10 Jul 2017 21:55:40 -0700 >> > Michael Forney wrote: >> > >> > Hey Michael,

Re: [hackers] [scron] [PATCH 1/3] Just use simple linked list instead of queue.h

2017-07-12 Thread Dimitris Papastamos
On Tue, Jul 11, 2017 at 10:49:53AM -0700, Michael Forney wrote: > On 7/11/17, Laslo Hunhold wrote: > > On Mon, 10 Jul 2017 21:55:40 -0700 > > Michael Forney wrote: > > > > Hey Michael, > > > > what's wrong with queue.h? > > The simple linked list I proposed

Re: [hackers] [scron] [PATCH 1/3] Just use simple linked list instead of queue.h

2017-07-11 Thread Michael Forney
On 7/11/17, Laslo Hunhold wrote: > On Mon, 10 Jul 2017 21:55:40 -0700 > Michael Forney wrote: > > Hey Michael, > > what's wrong with queue.h? The simple linked list I proposed uses the same amount of code, and is easier to understand because it isn't hidden

Re: [hackers] [scron] [PATCH 1/3] Just use simple linked list instead of queue.h

2017-07-11 Thread Laslo Hunhold
On Mon, 10 Jul 2017 21:55:40 -0700 Michael Forney wrote: Hey Michael, > --- what's wrong with queue.h? With best regards Laslo Hunhold -- Laslo Hunhold

[hackers] [scron] [PATCH 1/3] Just use simple linked list instead of queue.h

2017-07-10 Thread Michael Forney
--- crond.c | 36 ++-- queue.h | 648 2 files changed, 18 insertions(+), 666 deletions(-) delete mode 100644 queue.h diff --git a/crond.c b/crond.c index e12c6f2..32a170e 100644 --- a/crond.c +++ b/crond.c @@ -15,7 +15,6 @@