-
Notifications
You must be signed in to change notification settings - Fork 135
New issue
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
[runtime] page fault at 0x1650 on 0x3ffdfff0 (scause: 0xf) #472
Comments
It looks like you probably ran out of stack, which begins at 0x40000000 and ends at 0x3ffe0000 by default. Try bumping EYRIE_USER_STACK_SIZE. |
I tried #define EYRIE_USER_STACK_SIZE 0x80000, and the problem still exists. Should I clean the make directory for runtime and try again? or any other thoughts? |
Yep, you'll need to clean both the runtime and examples subdirectories: |
I cleaned both directories and raised stack size up to 16, but the problem still exists. |
I also tried initializing rx and tx using malloc |
I'm trying to generate the session key inside enclave. Following is the code.
However, the function
crypto_kx_server_session_keys
raises [runtime] page fault at 0x1650 on 0x3ffdfff0 (scause: 0xf)`. Any thoughts what might cause this?The text was updated successfully, but these errors were encountered: