You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, every time an op is performed, the file descriptor for the file is malloc()'d, then free()'d a short time later. Making these fd's statically allocated would free up 2 syscalls per operation.
The text was updated successfully, but these errors were encountered:
Currently, every time an op is performed, the file descriptor for the file is malloc()'d, then free()'d a short time later. Making these fd's statically allocated would free up 2 syscalls per operation.
The text was updated successfully, but these errors were encountered: