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
{{ message }}
This repository has been archived by the owner on Mar 9, 2019. It is now read-only.
Is madvise critical to run boltdb? I am currently trying to access boltdb on an embedded device running Linux/armv7 and running into this error, madvise: function not implemented. I would rather not recompile the kernel if I can help it. I don't need boltdb to be "fast" just functional on this device. Can this error be skipped/ignored?
The text was updated successfully, but these errors were encountered:
You can check if CONFIG_ADVISE_SYSCALLS is set to "y" in your kernel configuration.
Without it, madvise syscall would fail with the error as reported here.
Is madvise critical to run boltdb? I am currently trying to access boltdb on an embedded device running Linux/armv7 and running into this error,
madvise: function not implemented
. I would rather not recompile the kernel if I can help it. I don't need boltdb to be "fast" just functional on this device. Can this error be skipped/ignored?The text was updated successfully, but these errors were encountered: