GithubHelp home page GithubHelp logo

Comments (3)

jimblandy avatar jimblandy commented on August 24, 2024

The notify crate registers its inotify file descriptor with mio::PollOpt::edge(), which requests edge-triggered notifications, as described here: https://docs.rs/mio/0.6.15/mio/struct.Poll.html#edge-triggered-and-level-triggered

If when the socket was registered with Poll, edge triggered events were requested, then the call to Poll::poll done in step 5 will (probably) hang despite there being another 1kb still present in the socket read buffer. The reason for this is that edge-triggered mode delivers events only when changes occur on the monitored Evented. So, in step 5 the caller might end up waiting for some data that is already present inside the socket buffer.

This means that notify::inotify::EventLoop::handle_inotify is indeed counting on inotify::Inotify::read_events to behave as documented: to fully consume all available data from the file descriptor.

from inotify-sys.

jimblandy avatar jimblandy commented on August 24, 2024

Indeed, if I change notify::inotify::EventLoop::new to request level-triggered events on inotify_fd, I get all my file creation notifications.

from inotify-sys.

jimblandy avatar jimblandy commented on August 24, 2024

Ah, crud, this is the inotify-sys crate, not inotify.

from inotify-sys.

Related Issues (8)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.