Fix the comment to not refer to the removed end_fd parameter.

This commit is contained in:
Gregory P. Smith 2014-06-01 13:46:36 -07:00
parent d4dcb70287
commit a26987a0a5
1 changed files with 2 additions and 2 deletions

View File

@ -234,8 +234,8 @@ struct linux_dirent64 {
char d_name[256]; /* Filename (null-terminated) */ char d_name[256]; /* Filename (null-terminated) */
}; };
/* Close all open file descriptors in the range start_fd inclusive to end_fd /* Close all open file descriptors in the range from start_fd and higher
* exclusive. Do not close any in the sorted py_fds_to_keep list. * Do not close any in the sorted py_fds_to_keep list.
* *
* This version is async signal safe as it does not make any unsafe C library * This version is async signal safe as it does not make any unsafe C library
* calls, malloc calls or handle any locks. It is _unfortunate_ to be forced * calls, malloc calls or handle any locks. It is _unfortunate_ to be forced