[DOC] Mention rb_io_fdopen() takes ownership of the FD

This commit is contained in:
Alan Wu 2024-08-28 17:27:57 -04:00
Родитель c3ffa7106b
Коммит 3fa5b4be19
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -385,7 +385,7 @@ VALUE rb_io_puts(int argc, const VALUE *argv, VALUE io);
* @param[in] fd Target file descriptor. * @param[in] fd Target file descriptor.
* @param[in] flags Flags, e.g. `O_CREAT|O_EXCL` * @param[in] flags Flags, e.g. `O_CREAT|O_EXCL`
* @param[in] path The path of the file that backs `fd`, for diagnostics. * @param[in] path The path of the file that backs `fd`, for diagnostics.
* @return An allocated instance of ::rb_cIO. * @return An allocated instance of ::rb_cIO with the autoclose flag set.
* @note Leave `path` NULL if you don't know. * @note Leave `path` NULL if you don't know.
*/ */
VALUE rb_io_fdopen(int fd, int flags, const char *path); VALUE rb_io_fdopen(int fd, int flags, const char *path);