我正在探索使用XCB创建一个窗口管理器,但是我很早就遇到了一些麻烦我的代码甚至不能用xcb_connect连接到XCB我觉得这很简单,但我有一些非常奇怪的行为我的代码如下:

#include <stdio.h>
#include <xcb/xcb.h>

int i = 0;

int connect(xcb_connection_t** conn) {
    xcb_connection_t* try_conn = xcb_connect(NULL, NULL);
    int status = 0;
    int conn_status = xcb_connection_has_error(try_conn);
    if (conn_status != 0) {
        i = i + 1;
        switch (conn_status) {
            case XCB_CONN_ERROR:
                printf("Error connecting to the X Server, try %d\n", i);
                break;
            case XCB_CONN_CLOSED_EXT_NOTSUPPORTED:
                printf("Connection closed, extension not supported\n");
                break;
            case XCB_CONN_CLOSED_MEM_INSUFFICIENT:
                printf("Connection closed, memory insufficient\n");
                break;
            case XCB_CONN_CLOSED_REQ_LEN_EXCEED:
                printf("Connection closed, required length exceeded\n");
                break;
            case XCB_CONN_CLOSED_PARSE_ERR:
                printf("Connection closed, parse error\n");
                break;
            case XCB_CONN_CLOSED_INVALID_SCREEN:
                printf("Connection closed, invalid screen\n");
                break;
            default:
                printf("Connection failed with unknown cause\n");
                break;
        }

        status = 1;
    } else {
        *conn = try_conn;
        status = 0;
    }

    return status;
}

int main() {
    xcb_connection_t* conn = NULL;
    if (connect(&conn) != 0) {
        printf("Error connecting to the X Server\n");
        return -1;
    }

    return 0;
}

每次运行程序时,它都会打印出Error connecting the the X Server, try %d\n8191次的行当我查看gdb的运行情况时,似乎每次调用xcb_connect时,我的代码都会在xcb_connect_to_display_with_auth_info()connect()函数之间进行深层递归(比如数千帧深)。
真正让我困惑的是xcb_connect_to_display_with_auth_info()如何调用我的connect()函数,因为它来自一个单独的库,而且我还没有传入指向我的函数的指针在我看来,代码的行为应该是完全“线性”的,但事实并非如此。
我正在测试窗口管理器,方法是在运行程序之前使用X服务器名:1运行Xephyr并将DISPLAY设置为:1
我对XCB和C本身有点陌生,所以我可能漏掉了一些显而易见的东西,但是我很感激任何指针到目前为止,我一直在寻找灵感。

最佳答案

您正在重写C库的connect函数XCB调用该函数来连接X11服务器,但最终却调用了您的函数。
https://linux.die.net/man/2/connect
一种可能的解决方法(除了给你的函数起另一个名字)是让它static

09-17 15:04