We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
httpd_t* httpd = httpd_create(port, 1); 我是64位的电脑,但是使用过程中发现这里的http_create展开之后的main_loop返回了32位的地址,看了汇编发现有个cltq指令做了强制转换,从而导致了后续的崩溃,因为地址已经不对了。 解决目前是通过直接包含如下头文件,从原理上来说应该是链接阶段因为这个函数没有声明所以导致了一些问题。 #include "base/main_loop.h"
此外想请教一个问题,我在vscode的插件里面设置中文的时候好像不生效,不知道应该怎么操作。。
The text was updated successfully, but these errors were encountered:
可能是没包含相应的头文件。如果一个函数没有声明,默认返回int类型,指针就变成了32位了。
Sorry, something went wrong.
非常感谢,已修改。麻烦更新试试。
No branches or pull requests
httpd_t* httpd = httpd_create(port, 1);
我是64位的电脑,但是使用过程中发现这里的http_create展开之后的main_loop返回了32位的地址,看了汇编发现有个cltq指令做了强制转换,从而导致了后续的崩溃,因为地址已经不对了。
解决目前是通过直接包含如下头文件,从原理上来说应该是链接阶段因为这个函数没有声明所以导致了一些问题。
#include "base/main_loop.h"
此外想请教一个问题,我在vscode的插件里面设置中文的时候好像不生效,不知道应该怎么操作。。
The text was updated successfully, but these errors were encountered: