os: unexport WaitForSomething()

Not used by any drivers, so no need to export it.

Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
Part-of: <https://gitlab.freedesktop.org/xorg/xserver/-/merge_requests/1584>
(cherry picked from commit 3d3d148039)
This commit is contained in:
Enrico Weigelt, metux IT consult 2024-03-08 18:53:03 +01:00 committed by Alan Coopersmith
parent 9b1e1dc2c4
commit 6ceebf6cf5
2 changed files with 2 additions and 2 deletions

View file

@ -93,8 +93,6 @@ typedef struct _NewClientRec *NewClientPtr;
extern void ddxBeforeReset(void);
#endif
extern _X_EXPORT Bool WaitForSomething(Bool clients_are_ready);
extern _X_EXPORT int ReadRequestFromClient(ClientPtr /*client */ );
extern _X_EXPORT int ReadFdFromClient(ClientPtr client);

View file

@ -243,4 +243,6 @@ void ListenToAllClients(void);
/* allow DDX to force using another clock */
void ForceClockId(clockid_t forced_clockid);
Bool WaitForSomething(Bool clients_are_ready);
#endif /* _OSDEP_H_ */