-
Notifications
You must be signed in to change notification settings - Fork 29.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
doc: add info on what's used for fswatch on AIX #6837
Conversation
Info is provided on for the other OS's. Add similar level of info for AIX.
LGTM |
1 similar comment
LGTM |
@@ -1467,6 +1467,7 @@ to be notified of filesystem changes. | |||
* On OS X, this uses `kqueue` for files and 'FSEvents' for directories. | |||
* On SunOS systems (including Solaris and SmartOS), this uses `event ports`. | |||
* On Windows systems, this feature depends on `ReadDirectoryChangesW`. | |||
* On Aix systems, this feature depends on `AHAFS`, which must be enabled. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hmm.. it would be excellent if these were links (e.g. if kqueue' was a link to more information on
kqueue,
event portswas a link to more information on that,
AHAFS` was a link to more information on that, etc). That could be done in a separate PR tho.
Small nit but LGTM |
@jasnell, good idea, I'll land this and put it on my queue to submit a new one with the links added for all. |
Info is provided on for the other OS's. Add similar level of info for AIX. PR-URL: #6837 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Santiago Gimeno <[email protected]>
Landed as 8af25a3 |
Info is provided on for the other OS's. Add similar level of info for AIX. PR-URL: nodejs#6837 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Santiago Gimeno <[email protected]>
Info is provided on for the other OS's. Add similar level of info for AIX. PR-URL: #6837 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Santiago Gimeno <[email protected]>
Info is provided on for the other OS's. Add similar level of info for AIX. PR-URL: #6837 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Santiago Gimeno <[email protected]>
Info is provided on for the other OS's. Add similar level of info for AIX. PR-URL: #6837 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Santiago Gimeno <[email protected]>
Info is provided on for the other OS's. Add similar level of info for AIX. PR-URL: #6837 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Santiago Gimeno <[email protected]>
Info is provided on for the other OS's. Add similar level of info for AIX. PR-URL: #6837 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Santiago Gimeno <[email protected]>
Info is provided on for the other OS's. Add similar level of info for AIX. PR-URL: #6837 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Santiago Gimeno <[email protected]>
Checklist
Affected core subsystem(s)
fs
Description of change
Noticed we don't mention how fswatch is implemented for AIX like
we do on other platforms, adding