diff --git a/hw/xfree86/common/xf86.h b/hw/xfree86/common/xf86.h index 5dc095674..918473baa 100644 --- a/hw/xfree86/common/xf86.h +++ b/hw/xfree86/common/xf86.h @@ -249,8 +249,6 @@ xf86GetFlipPixels(void); extern _X_EXPORT Bool xf86ServerIsExiting(void); extern _X_EXPORT Bool -xf86ServerIsResetting(void); -extern _X_EXPORT Bool xf86ServerIsOnlyDetecting(void); extern _X_EXPORT Bool xf86GetVidModeAllowNonLocal(void); diff --git a/hw/xfree86/common/xf86Helper.c b/hw/xfree86/common/xf86Helper.c index 74c94e395..d4218ffe1 100644 --- a/hw/xfree86/common/xf86Helper.c +++ b/hw/xfree86/common/xf86Helper.c @@ -1383,12 +1383,6 @@ xf86ServerIsExiting(void) return (dispatchException & DE_TERMINATE) == DE_TERMINATE; } -Bool -xf86ServerIsResetting(void) -{ - return xf86Resetting; -} - Bool xf86ServerIsOnlyDetecting(void) { diff --git a/hw/xfree86/doc/ddxDesign.xml b/hw/xfree86/doc/ddxDesign.xml index 19830bb0b..e391b1dcb 100644 --- a/hw/xfree86/doc/ddxDesign.xml +++ b/hw/xfree86/doc/ddxDesign.xml @@ -1987,18 +1987,6 @@ functions is as follows: -
-- - Bool xf86ServerIsResetting(); - -- -- Returns TRUE if the server is at the end of a - generation and is in the process of resetting, and -FALSE otherwise. -
Bool xf86ServerIsOnlyProbing();