File:  [CSRG BSD Unix] / 43BSDTahoe / new / X / Xlib / XPending.c
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs
Tue Apr 24 16:12:58 2018 UTC (8 years, 1 month ago) by root
Branches: MAIN, BSD
CVS tags: HEAD, BSD43tahoe
BSD 4.3tahoe

#include <X/mit-copyright.h>

/* $Header: /var/lib/cvsd/repos/CSRG/43BSDTahoe/new/X/Xlib/XPending.c,v 1.1.1.1 2018/04/24 16:12:58 root Exp $ */
/* Copyright    Massachusetts Institute of Technology    1985	*/

#include "XlibInternal.h"

/* Read in any pending events and return the number of queued events. */

int XPending ()
{
	register int len;
	int pend;
	char buf[BUFSIZE];
	register XRep *rep;
	register Display *dpy = _XlibCurrentDisplay;
	
	_XFlush (dpy);
	if (ioctl(dpy->fd, FIONREAD, &pend) < 0)
	    _XIOError(dpy);
	if ((len = pend) < sizeof(XRep))
	    return(dpy->qlen);
	else if (len > BUFSIZE)
	    len = BUFSIZE;
	len /= sizeof(XRep);
	pend = len * sizeof(XRep);
	_XRead (dpy, buf, pend);
	for (rep = (XRep *) buf; len > 0; rep++, len--) {
	    if (rep->code == X_Error)
		_XError(dpy, (XErrorEvent *)rep);
	    else   /* must be an event packet */
		_XEnq(dpy, (XEvent *) rep);
	}
	return(dpy->qlen);
}


unix.superglobalmegacorp.com

This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.