[PATCH 01/12] libc/not-cancel.h: Enable pause_not_cancel for arches without __NR_pause

2013-02-21 Thread Markos Chandras
From: Markos Chandras Signed-off-by: Markos Chandras --- libc/sysdeps/linux/common/not-cancel.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libc/sysdeps/linux/common/not-cancel.h b/libc/sysdeps/linux/common/not-cancel.h index 08dab8c..71da653 100644 --- a/libc/sysde

Re: [PATCH 01/12] libc/not-cancel.h: Enable pause_not_cancel for arches without __NR_pause

2013-02-21 Thread Bernhard Reutner-Fischer
On 21 February 2013 11:11, Markos Chandras wrote: > # define pause_not_cancel() \ >INLINE_SYSCALL (pause, 0) > -/*#else > +#else > # define pause_not_cancel() \ > - __pause_nocancel ()*/ > + __pause_nocancel () > #endif Where does that __pause_nocancel impl come from if you don't have _

Re: [PATCH 01/12] libc/not-cancel.h: Enable pause_not_cancel for arches without __NR_pause

2013-02-21 Thread Markos Chandras
On 21 February 2013 13:53, Bernhard Reutner-Fischer wrote: > On 21 February 2013 11:11, Markos Chandras wrote: > >> # define pause_not_cancel() \ >>INLINE_SYSCALL (pause, 0) >> -/*#else >> +#else >> # define pause_not_cancel() \ >> - __pause_nocancel ()*/ >> + __pause_nocancel () >> #end

Re: [PATCH 01/12] libc/not-cancel.h: Enable pause_not_cancel for arches without __NR_pause

2013-02-21 Thread Bernhard Reutner-Fischer
On 21 February 2013 14:58, Markos Chandras wrote: > On 21 February 2013 13:53, Bernhard Reutner-Fischer > wrote: >> On 21 February 2013 11:11, Markos Chandras wrote: >> >>> # define pause_not_cancel() \ >>>INLINE_SYSCALL (pause, 0) >>> -/*#else >>> +#else >>> # define pause_not_cancel() \

Re: [PATCH 01/12] libc/not-cancel.h: Enable pause_not_cancel for arches without __NR_pause

2013-02-21 Thread Markos Chandras
On 21 February 2013 14:14, Bernhard Reutner-Fischer wrote: > On 21 February 2013 14:58, Markos Chandras wrote: >> On 21 February 2013 13:53, Bernhard Reutner-Fischer >> wrote: >>> On 21 February 2013 11:11, Markos Chandras >>> wrote: >>> # define pause_not_cancel() \ INLINE_SYSCA