You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
628 B
C
42 lines
628 B
C
/* PDCurses */
|
|
|
|
#include "pdcx11.h"
|
|
|
|
#if defined(HAVE_POLL) && !defined(HAVE_USLEEP)
|
|
# include <poll.h>
|
|
#endif
|
|
|
|
void PDC_beep(void)
|
|
{
|
|
PDC_LOG(("PDC_beep() - called\n"));
|
|
|
|
XBell(XtDisplay(pdc_toplevel), 50);
|
|
}
|
|
|
|
void PDC_napms(int ms)
|
|
{
|
|
PDC_LOG(("PDC_napms() - called: ms=%d\n", ms));
|
|
|
|
XSync(XtDisplay(pdc_toplevel), False);
|
|
|
|
#if defined(HAVE_USLEEP)
|
|
|
|
usleep(1000 * ms);
|
|
|
|
#elif defined(HAVE_POLL)
|
|
{
|
|
struct pollfd fd;
|
|
fd.fd = -1;
|
|
fd.events = 0;
|
|
poll(&fd, 1, ms);
|
|
}
|
|
#endif
|
|
}
|
|
|
|
const char *PDC_sysname(void)
|
|
{
|
|
return "X11";
|
|
}
|
|
|
|
enum PDC_port PDC_port_val = PDC_PORT_X11;
|