On 4/1/21 11:40 AM, Jeff Hostetler via GitGitGadget wrote: > +# If your platform supports an built-in fsmonitor backend, set > +# FSMONITOR_DAEMON_BACKEND to the name of the corresponding > +# `compat/fsmonitor/fsmonitor-fs-listen-<name>.c` that implements the > +# `fsmonitor_fs_listen__*()` routines. I found this to be a little confusing, specifically that you care about the "<name>" part of the filename, not the full file name. Here is an option: # If your platform supports an built-in fsmonitor backend, set # FSMONITOR_DAEMON_BACKEND to "<name>", corresponding to the file # `compat/fsmonitor/fsmonitor-fs-listen-<name>.c` that implements the # `fsmonitor_fs_listen__*()` routines. Everything else looks pretty standard. Good to create stubs this way so they can be consumed by a platform-agnostic caller and then implemented with that context. Thanks, -Stolee