up vote 1 down vote favorite
share [g+] share [fb]

I'm trying to use iNotify in linux rhel5, kernel 2.6.18, glibc 2.5-18. I did not define the event as one shot but for some some reason it behaves as if I did. The impact is that I have to re-add a watch after each event. Any one ever used iNotify? Another problem is that the mask returned in the event object contains only one flag: IN_ONE_SHOT.

link|improve this question
Can you show a small piece of code? – Duck May 18 '09 at 13:53
Try strace. That's a good way to check that your code is making the system calls you expect. – Peter Cordes Dec 8 '09 at 18:17
feedback

1 Answer

Write the smallest example you can and test that. If it demonstrates the behaviour you are talking about then add it to your question. If it behaves normally then add a little more of your code and test again. Keep repeating until you have reproduced the error or you have your code working. Often I find that building a toy program tells me exactly what I am doing wrong that I could not see in a larger program.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown