[libvirt] [PATCH] virthread: include config.h in the header file

Paul Moore pmoore at redhat.com
Wed Aug 7 15:27:06 UTC 2013


On Wednesday, August 07, 2013 04:25:04 PM Daniel P. Berrange wrote:
> On Wed, Aug 07, 2013 at 11:11:20AM -0400, Paul Moore wrote:
> > The virthread.h header file includes platform specific header files
> > that help define the thread implementation, see code snippet below.
> > 
> >   # ifdef WIN32
> >   #  include "virthreadwin32.h"
> >   # elif defined HAVE_PTHREAD_MUTEXATTR_INIT
> >   #  include "virthreadpthread.h"
> >   # else
> >   #  error "Either pthreads or Win32 threads are required"
> >   # endif
> > 
> > Unfortunately, virthread.h does not include config.h so every source
> > file which includes virthread.h must also include config.h, regardless
> > of if the source file directly needs definitions in config.h.  This
> > patch adds config.h to virthread.h in an effort to help simplify
> > things.
> 
> Every single .c files is mandated to include <config.h> as its first
> header file, so .h files never need include it themselves. We enforce
> this rule via 'make syntax-check'.

Okay, sorry for the noise.

-- 
paul moore
security and virtualization @ redhat




More information about the libvir-list mailing list