include: move busfault.h out of public include dir
this header is isn't public, so it's more appropriate, where the actual code is, which is the os/ directory. Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net> Part-of: <https://gitlab.freedesktop.org/xorg/xserver/-/merge_requests/1337>
This commit is contained in:
parent
84407af615
commit
dae76bbaaf
|
@ -43,6 +43,9 @@ in this Software without prior written authorization from The Open Group.
|
||||||
#include <fcntl.h>
|
#include <fcntl.h>
|
||||||
#include <X11/X.h>
|
#include <X11/X.h>
|
||||||
#include <X11/Xproto.h>
|
#include <X11/Xproto.h>
|
||||||
|
|
||||||
|
#include "os/busfault.h"
|
||||||
|
|
||||||
#include "misc.h"
|
#include "misc.h"
|
||||||
#include "os.h"
|
#include "os.h"
|
||||||
#include "dixstruct.h"
|
#include "dixstruct.h"
|
||||||
|
@ -59,7 +62,6 @@ in this Software without prior written authorization from The Open Group.
|
||||||
#include <X11/Xfuncproto.h>
|
#include <X11/Xfuncproto.h>
|
||||||
#include <sys/mman.h>
|
#include <sys/mman.h>
|
||||||
#include "protocol-versions.h"
|
#include "protocol-versions.h"
|
||||||
#include "busfault.h"
|
|
||||||
|
|
||||||
/* Needed for Solaris cross-zone shared memory extension */
|
/* Needed for Solaris cross-zone shared memory extension */
|
||||||
#ifdef HAVE_SHMCTL64
|
#ifdef HAVE_SHMCTL64
|
||||||
|
|
|
@ -65,6 +65,7 @@ SOFTWARE.
|
||||||
#include <X11/X.h>
|
#include <X11/X.h>
|
||||||
|
|
||||||
#include "dix/dix_priv.h"
|
#include "dix/dix_priv.h"
|
||||||
|
#include "os/busfault.h"
|
||||||
|
|
||||||
#include "misc.h"
|
#include "misc.h"
|
||||||
#include "osdep.h"
|
#include "osdep.h"
|
||||||
|
@ -73,7 +74,6 @@ SOFTWARE.
|
||||||
#ifdef DPMSExtension
|
#ifdef DPMSExtension
|
||||||
#include "dpmsproc.h"
|
#include "dpmsproc.h"
|
||||||
#endif
|
#endif
|
||||||
#include "busfault.h"
|
|
||||||
|
|
||||||
#ifdef WIN32
|
#ifdef WIN32
|
||||||
/* Error codes from windows sockets differ from fileio error codes */
|
/* Error codes from windows sockets differ from fileio error codes */
|
||||||
|
|
|
@ -26,8 +26,10 @@
|
||||||
|
|
||||||
#include <X11/Xos.h>
|
#include <X11/Xos.h>
|
||||||
#include <X11/Xdefs.h>
|
#include <X11/Xdefs.h>
|
||||||
|
|
||||||
|
#include "os/busfault.h"
|
||||||
|
|
||||||
#include "misc.h"
|
#include "misc.h"
|
||||||
#include <busfault.h>
|
|
||||||
#include <list.h>
|
#include <list.h>
|
||||||
#include <stddef.h>
|
#include <stddef.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
|
|
@ -25,6 +25,8 @@
|
||||||
|
|
||||||
#include <dix-config.h>
|
#include <dix-config.h>
|
||||||
|
|
||||||
|
#include <X11/Xdefs.h>
|
||||||
|
|
||||||
#ifdef HAVE_SIGACTION
|
#ifdef HAVE_SIGACTION
|
||||||
|
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
|
@ -63,6 +63,8 @@ SOFTWARE.
|
||||||
#include <execinfo.h>
|
#include <execinfo.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#include "os/busfault.h"
|
||||||
|
|
||||||
#include "misc.h"
|
#include "misc.h"
|
||||||
|
|
||||||
#include "dixstruct.h"
|
#include "dixstruct.h"
|
||||||
|
@ -158,8 +160,6 @@ OsSigHandler(int signo)
|
||||||
}
|
}
|
||||||
#endif /* !WIN32 || __CYGWIN__ */
|
#endif /* !WIN32 || __CYGWIN__ */
|
||||||
|
|
||||||
#include "busfault.h"
|
|
||||||
|
|
||||||
void
|
void
|
||||||
OsInit(void)
|
OsInit(void)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue