Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: fsnotify/fsnotify
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: orbstack/fsnotify-macvirt
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 3 commits
  • 2 files changed
  • 1 contributor

Commits on Apr 24, 2024

  1. [MOD] add event flags

    kdrag0n committed Apr 24, 2024
    Configuration menu
    Copy the full SHA
    5d58403 View commit details
    Browse the repository at this point in the history
  2. kqueue: set O_CLOEXEC on close pipe fds

    These file descriptors are being leaked to child processes because
    O_CLOEXEC isn't set.
    kdrag0n committed Apr 24, 2024
    Configuration menu
    Copy the full SHA
    788a996 View commit details
    Browse the repository at this point in the history

Commits on May 23, 2026

  1. kqueue: add non-recursive watches

    Add Watcher.AddNonRecursive for raw kqueue event masks without the directory child-watching behavior used to mimic inotify.
    
    Track non-recursive directory watches so directory NOTE_WRITE events are delivered directly instead of triggering child scans later. This is useful for device directories such as /dev where opening existing entries can fail with EBUSY.
    
    Validation: go test -run TestAddNonRecursiveDoesNotWatchChildren; go test -run TestRemoveState
    kdrag0n committed May 23, 2026
    Configuration menu
    Copy the full SHA
    0ef9f7c View commit details
    Browse the repository at this point in the history
Loading