os: unexport FlushAllOutput()
Not used by any modules, so no need to keep it exported. Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net> Part-of: <https://gitlab.freedesktop.org/xorg/xserver/-/merge_requests/1790>
This commit is contained in:
parent
c6b223459c
commit
be16616715
|
@ -86,8 +86,6 @@ typedef struct _NewClientRec *NewClientPtr;
|
||||||
|
|
||||||
extern _X_EXPORT int ReadFdFromClient(ClientPtr client);
|
extern _X_EXPORT int ReadFdFromClient(ClientPtr client);
|
||||||
|
|
||||||
extern _X_EXPORT void FlushAllOutput(void);
|
|
||||||
|
|
||||||
extern _X_EXPORT void FlushIfCriticalOutputPending(void);
|
extern _X_EXPORT void FlushIfCriticalOutputPending(void);
|
||||||
|
|
||||||
extern _X_EXPORT void SetCriticalOutputPending(void);
|
extern _X_EXPORT void SetCriticalOutputPending(void);
|
||||||
|
|
|
@ -64,6 +64,7 @@ SOFTWARE.
|
||||||
|
|
||||||
#include "dix/dix_priv.h"
|
#include "dix/dix_priv.h"
|
||||||
#include "os/busfault.h"
|
#include "os/busfault.h"
|
||||||
|
#include "os/client_priv.h"
|
||||||
#include "os/screensaver.h"
|
#include "os/screensaver.h"
|
||||||
|
|
||||||
#include "misc.h"
|
#include "misc.h"
|
||||||
|
|
|
@ -46,6 +46,7 @@ void ListenOnOpenFD(int fd, int noxauth);
|
||||||
int ReadRequestFromClient(struct _Client *client);
|
int ReadRequestFromClient(struct _Client *client);
|
||||||
int WriteFdToClient(struct _Client *client, int fd, Bool do_close);
|
int WriteFdToClient(struct _Client *client, int fd, Bool do_close);
|
||||||
Bool InsertFakeRequest(struct _Client *client, char *data, int count);
|
Bool InsertFakeRequest(struct _Client *client, char *data, int count);
|
||||||
|
void FlushAllOutput(void);
|
||||||
|
|
||||||
/* exported only for DRI module, but should not be used by external drivers */
|
/* exported only for DRI module, but should not be used by external drivers */
|
||||||
_X_EXPORT void ResetCurrentRequest(struct _Client *client);
|
_X_EXPORT void ResetCurrentRequest(struct _Client *client);
|
||||||
|
|
Loading…
Reference in New Issue