Make changes from comments to FileHandle.h

Address comments.
pull/8461/head
Amanda Butler 2018-10-29 14:09:16 -05:00 committed by GitHub
parent 3a8919b22d
commit 9ab13df3bd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -205,8 +205,8 @@ public:
} }
/** Check for poll event flags /** Check for poll event flags
* The input parameter can be used or ignored - the could always return all events, * You can use or ignore the input parameter. You can return all events
* or could check just the events listed in events. * or check just the events listed in events.
* Call is nonblocking - returns instantaneous state of events. * Call is nonblocking - returns instantaneous state of events.
* Whenever an event occurs, the derived class should call the sigio() callback). * Whenever an event occurs, the derived class should call the sigio() callback).
* *
@ -254,7 +254,7 @@ public:
* as a building block for constructing such functionality. * as a building block for constructing such functionality.
* *
* The exact timing of when the registered function * The exact timing of when the registered function
* is called is not guaranteed and susceptible to change. It should be used * is called is not guaranteed and is susceptible to change. It should be used
* as a cue to make read/write/poll calls to find the current state. * as a cue to make read/write/poll calls to find the current state.
* *
* @param func Function to call on state change * @param func Function to call on state change