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
When running on Gloire (even though this should be reproducible in other systems), compiling and running code like
#include <stdlib.h> int main(void) { void *example = malloc(0xFFFFFFFFFF); }
results in mlibc panicking if the mmap sysdep fails, which can happen in out of memory conditions.
mmap
The expected behavior is for mlibc to pass the error to userland for handling by the application.
I will attach an image of the error and test program as tested in Gloire.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When running on Gloire (even though this should be reproducible in other systems), compiling and running code like
results in mlibc panicking if the
mmap
sysdep fails, which can happen in out of memory conditions.The expected behavior is for mlibc to pass the error to userland for handling by the application.
I will attach an image of the error and test program as tested in Gloire.
The text was updated successfully, but these errors were encountered: