dix: unexport and document ClientIsAsleep()
Not used by any external drivers, so no need to keep it exported. Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
parent
2e0cde7b56
commit
689de526a4
|
@ -365,4 +365,13 @@ int ClientSignalAll(ClientPtr pClient, ClientSleepProcPtr func, void *closure)
|
||||||
void ClientWakeup(ClientPtr pclient)
|
void ClientWakeup(ClientPtr pclient)
|
||||||
_X_ATTRIBUTE_NONNULL_ARG(1);
|
_X_ATTRIBUTE_NONNULL_ARG(1);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @brief check whether client is asleep
|
||||||
|
*
|
||||||
|
* @param pClient pointer to client structure
|
||||||
|
* @return TRUE if client is sleeping and has no work to do
|
||||||
|
*/
|
||||||
|
Bool ClientIsAsleep(ClientPtr pClient)
|
||||||
|
_X_ATTRIBUTE_NONNULL_ARG(1);
|
||||||
|
|
||||||
#endif /* _XSERVER_DIX_PRIV_H */
|
#endif /* _XSERVER_DIX_PRIV_H */
|
||||||
|
|
|
@ -216,8 +216,6 @@ extern _X_EXPORT Bool QueueWorkProc(Bool (*function)(ClientPtr clientUnused,
|
||||||
ClientPtr client,
|
ClientPtr client,
|
||||||
void *closure);
|
void *closure);
|
||||||
|
|
||||||
extern _X_EXPORT Bool ClientIsAsleep(ClientPtr /*client */ );
|
|
||||||
|
|
||||||
extern _X_EXPORT void SendGraphicsExpose(ClientPtr /*client */ ,
|
extern _X_EXPORT void SendGraphicsExpose(ClientPtr /*client */ ,
|
||||||
RegionPtr /*pRgn */ ,
|
RegionPtr /*pRgn */ ,
|
||||||
XID /*drawable */ ,
|
XID /*drawable */ ,
|
||||||
|
|
Loading…
Reference in New Issue