xfree86: os-support: unexport xf86RemoveSIGIOHandler

It's not used by any driver, 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/1456>
This commit is contained in:
Enrico Weigelt, metux IT consult 2024-03-13 17:44:31 +01:00 committed by Marge Bot
parent 3e4fc3e588
commit a5cfe020f5
5 changed files with 5 additions and 1 deletions

View File

@ -68,6 +68,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#include "dristruct.h"
#include "mi.h"
#include "mipointer.h"
#include "xf86_os_support.h"
#include "xf86_OSproc.h"
#include "inputstr.h"
#include "xf86VGAarbiter.h"

View File

@ -65,6 +65,7 @@
#include <xserver_poll.h>
#include "xf86.h"
#include "xf86Priv.h"
#include "xf86_os_support.h"
#include "xf86_OSlib.h"
#include "inputstr.h"

View File

@ -30,8 +30,10 @@
#endif
#include <X11/X.h>
#include "xf86.h"
#include "xf86Priv.h"
#include "xf86_os_support.h"
#include "xf86_OSlib.h"
int

View File

@ -162,7 +162,6 @@ extern _X_EXPORT Bool xf86GARTCloseScreen(int screenNum);
wrappers than to wrap each individual function called. */
extern _X_EXPORT int xf86InstallSIGIOHandler(int fd, void (*f) (int, void *),
void *);
extern _X_EXPORT int xf86RemoveSIGIOHandler(int fd);
#ifdef XSERVER_PLATFORM_BUS
#include "hotplug.h"

View File

@ -27,5 +27,6 @@ void xf86InitVidMem(void);
void xf86OSRingBell(int volume, int pitch, int duration);
void xf86OSInputThreadInit(void);
Bool xf86DeallocateGARTMemory(int screenNum, int key);
int xf86RemoveSIGIOHandler(int fd);
#endif /* _XSERVER_XF86_OS_SUPPORT */