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
void **ret_addr = (void **)(sp); *ret_addr = (void *)pfn; 这两句操作的是BP的内容,根本不是retrun adress ,所以在 swap的时候,这里操作的adress根本无效,还要 额外的记录一次返回地址。 不知这样理解是否正确,请指导
The text was updated successfully, but these errors were encountered:
Sorry, something went wrong.
No branches or pull requests
void **ret_addr = (void **)(sp);
*ret_addr = (void *)pfn;
这两句操作的是BP的内容,根本不是retrun adress ,所以在 swap的时候,这里操作的adress根本无效,还要 额外的记录一次返回地址。
不知这样理解是否正确,请指导
The text was updated successfully, but these errors were encountered: