xfree86: xisb: drop unused XisbTrace()

Not used anywhere, so no need to keep it around anymore.

Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
Enrico Weigelt, metux IT consult 2025-05-21 15:22:22 +02:00
parent caefc315b8
commit 88d42e4e4b
2 changed files with 0 additions and 8 deletions

View File

@ -129,13 +129,6 @@ XisbRead(XISBuffer * b)
return b->buf[b->current++];
}
/* turn tracing of this buffer on (1) or off (0) */
void
XisbTrace(XISBuffer * b, int trace)
{
b->trace = trace;
}
/*
* specify a block_duration of -1 when you know the buffer's fd is ready to
* read. After a read, it is automatically set to 0 so that the next read

View File

@ -54,7 +54,6 @@ typedef struct _XISBuffer {
extern _X_EXPORT XISBuffer *XisbNew(int fd, ssize_t size);
extern _X_EXPORT void XisbFree(XISBuffer * b);
extern _X_EXPORT int XisbRead(XISBuffer * b);
extern _X_EXPORT void XisbTrace(XISBuffer * b, int trace);
extern _X_EXPORT void XisbBlockDuration(XISBuffer * b, int block_duration);
/*