xfree86: Unexport xf86Initialising, remove xf86ServerIsInitialising

Neither of these are used from outside the server.

Reviewed-by: Michel Dänzer <michel.daenzer@amd.com>
Signed-off-by: Adam Jackson <ajax@redhat.com>
This commit is contained in:
Adam Jackson 2016-01-06 08:30:07 -05:00
parent e70ee11a39
commit 0cd2a24b61
4 changed files with 1 additions and 21 deletions

View File

@ -306,8 +306,6 @@ xf86ServerIsExiting(void);
extern _X_EXPORT Bool
xf86ServerIsResetting(void);
extern _X_EXPORT Bool
xf86ServerIsInitialising(void);
extern _X_EXPORT Bool
xf86ServerIsOnlyDetecting(void);
extern _X_EXPORT Bool
xf86CaughtSignal(void);

View File

@ -1515,12 +1515,6 @@ xf86ServerIsResetting(void)
return xf86Resetting;
}
Bool
xf86ServerIsInitialising(void)
{
return xf86Initialising;
}
Bool
xf86ServerIsOnlyDetecting(void)
{

View File

@ -86,7 +86,7 @@ extern _X_EXPORT serverLayoutRec xf86ConfigLayout;
extern _X_EXPORT DriverPtr *xf86DriverList;
extern _X_EXPORT int xf86NumDrivers;
extern _X_EXPORT Bool xf86Resetting;
extern _X_EXPORT Bool xf86Initialising;
extern Bool xf86Initialising;
extern _X_EXPORT int xf86NumScreens;
extern _X_EXPORT const char *xf86VisualNames[];
extern _X_EXPORT int xf86Verbose; /* verbosity level */

View File

@ -2052,18 +2052,6 @@ functions is as follows:
</para></blockquote>
<blockquote><para>
<programlisting>
Bool xf86ServerIsInitialising();
</programlisting>
<blockquote><para>
Returns <constant>TRUE</constant> if the server is at the beginning of
a generation and is in the process of initialising, and
<constant>FALSE</constant> otherwise.
</para></blockquote>
</para></blockquote>
<blockquote><para>
<programlisting>
Bool xf86ServerIsOnlyProbing();