Date: Thu, 28 Jan 1999 09:28:38 -0800 (PST) From: Matthew Dillon <dillon@apollo.backplane.com> To: John Polstra <jdp@polstra.com> Cc: current@FreeBSD.ORG Subject: Re: -Wall -Wcast-qual and SYSINIT Message-ID: <199901281728.JAA09568@apollo.backplane.com> References: <199901281709.JAA11280@vashon.polstra.com>
next in thread | previous in thread | raw e-mail | index | archive | help
:Anyway, GCC actually does have an extension that addresses this :problem. See "Labeled Elements in Initializers" in the info pages. :Note, this extension should NOT be used, in my opinion. : :John :-- : John Polstra jdp@polstra.com : John D. Polstra & Co., Inc. Seattle, Washington USA I'm going to clarify the situation by comitting a separation of SYSINIT to SYSINIT ( for void * stuff ) and C_SYSINIT ( for const void * stuff ). However, they will use the same structure and thus will not address the warning at all. This is simply a clarification of the problem. This is in sys/kernel.h, of course. The auxillary macros, such as in sys/vnode.h, simply use the 'correct' *SYSINIT macro. What we need is a solution for C_SYSINIT that allows the const void * callback and data case through without warning, but does not allow the void * callback and data case. Just as the current SYSINIT case allows the void * callback/data case without warning but complaints on const void * callback/data. -Matt Matthew Dillon <dillon@backplane.com> To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199901281728.JAA09568>