Re: why timeradd() and co are hidden from the kernel space ?

2004-06-18 Thread Bruce Evans
On Thu, 17 Jun 2004, Cyrille Lefevre wrote: is there any reasons to hide timeradd() and co in sys/time.h from the kernel space (! _KERNEL) ? Yes. This prevents them being used in the kernel. They are compatibility cruft for NetBSD. In the kernel the corresponding interfaces are spelled

why timeradd() and co are hidden from the kernel space ?

2004-06-17 Thread Cyrille Lefevre
Hi, is there any reasons to hide timeradd() and co in sys/time.h from the kernel space (! _KERNEL) ? how about to remove #ifndef _KERNEL/#endif ? CC -hackers Cyrille Lefevre. -- home: mailto:[EMAIL PROTECTED] ___ [EMAIL PROTECTED] mailing list

Re: why timeradd() and co are hidden from the kernel space ?

2004-06-17 Thread Cyrille Lefevre
Bruce Evans [EMAIL PROTECTED] wrote: On Thu, 17 Jun 2004, Cyrille Lefevre wrote: is there any reasons to hide timeradd() and co in sys/time.h from the kernel space (! _KERNEL) ? Yes. This prevents them being used in the kernel. They are compatibility cruft for NetBSD. In the kernel