dix: unexport and document ClientWakeup()
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
646c76adea
commit
2e0cde7b56
|
@ -357,4 +357,12 @@ Bool dixClientSignal(ClientPtr pClient)
|
|||
int ClientSignalAll(ClientPtr pClient, ClientSleepProcPtr func, void *closure)
|
||||
_X_ATTRIBUTE_NONNULL_ARG(1,2);
|
||||
|
||||
/*
|
||||
* @brief wake up a client and restart request processing of this client
|
||||
*
|
||||
* @param pClient pointer to client structure
|
||||
*/
|
||||
void ClientWakeup(ClientPtr pclient)
|
||||
_X_ATTRIBUTE_NONNULL_ARG(1);
|
||||
|
||||
#endif /* _XSERVER_DIX_PRIV_H */
|
||||
|
|
|
@ -216,8 +216,6 @@ extern _X_EXPORT Bool QueueWorkProc(Bool (*function)(ClientPtr clientUnused,
|
|||
ClientPtr client,
|
||||
void *closure);
|
||||
|
||||
extern _X_EXPORT void ClientWakeup(ClientPtr /*client */ );
|
||||
|
||||
extern _X_EXPORT Bool ClientIsAsleep(ClientPtr /*client */ );
|
||||
|
||||
extern _X_EXPORT void SendGraphicsExpose(ClientPtr /*client */ ,
|
||||
|
|
Loading…
Reference in New Issue