-
Notifications
You must be signed in to change notification settings - Fork 45
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
fanotify backend #180
base: master
Are you sure you want to change the base?
fanotify backend #180
Conversation
src/linux/FAnotifyFsBackend.cc
Outdated
#include "FAnotifyFsBackend.hh" | ||
|
||
void FAnotifyFsBackend::start() { | ||
throw std::runtime_error("not implemented"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't know if we'd want to have an unimplemented backend here. And I'm unsure if we'd even end up implementing this one due to the elevated system permissions that it requires (CAP_SYS_ADMIN
)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fixed
'fanotify-fs' backend is completely removed from the code
@devongovett just gently checking in here. would love to get any initial thoughts on this when you have time |
#87