系统相关
首页 > 系统相关> > 从另一个进程关闭XLib应用程序

从另一个进程关闭XLib应用程序

作者:互联网

我有一个基于Xlib的程序,其中包含一个使用XNextEvent接收和处理相关事件的事件循环.

我希望能够从另一个进程(实际上来自shell脚本)优雅地关闭该程序.关闭时我需要做一些清理,所以我考虑设置信号处理程序(例如SIGUSR1),当收到此信号时,进行适当的清理.

我的问题是,如何从信号处理程序中断(阻塞)XNextEvent调用?

还有其他建议吗?

解决方法:

我找到了一种基于this SO questionthis one的方法.

基本上,您可以使用ConnectionNumber()宏来获取XNextEvent()正在读取的fd.这让我自己调用select()来等待Xlib fd和其他一些fd上的数据.现在它是阻塞的select(),而不是XNextEvent().通过写入第二个fd,我可以轻松地从信号处理程序中取消阻止select().

事件循环的伪代码:

/* Get X11 fd */
x11_fd = ConnectionNumber(display);

while(1) {
    /* Create a File Description Set containing x11_fd and other_fd */
    FD_ZERO(&in_fds);
    FD_SET(x11_fd, &in_fds);
    FD_SET(other_fd, &in_fds);

    /* Wait for X Event or exit signal */
    ret = select(nfds, &in_fds, ...);
    if (FD_ISSET(other_fd, &in_fds) {
        /* Do any cleanup and exit */
    } else {
        while (XEventsQueued(display, QueuedAlready) > 0) {
            /* Process X events */
        }
    }
}

标签:c-3,xlib,linux,x11,signals
来源: https://codeday.me/bug/20190825/1717130.html