1
0
mirror of git://projects.qi-hardware.com/gmenu2x.git synced 2024-07-02 18:05:26 +03:00

Start inotify with working mask (fixes previous commit)

This commit is contained in:
Paul Cercueil 2013-07-19 11:47:27 -04:00
parent 5e7bcf3a1f
commit 0264b724d6

View File

@ -9,7 +9,8 @@
class Monitor {
public:
Monitor(std::string path, unsigned int flags = IN_MOVE |
IN_CLOSE_WRITE | IN_DELETE | IN_CREATE);
IN_CLOSE_WRITE | IN_DELETE | IN_CREATE |
IN_DELETE_SELF | IN_MOVE_SELF);
virtual ~Monitor();
int run(void);