diff --git a/docs/src/process.rst b/docs/src/process.rst index 4ec83768..2b09a93a 100644 --- a/docs/src/process.rst +++ b/docs/src/process.rst @@ -96,7 +96,13 @@ Data types * search for the exact file name before trying variants with * extensions like '.exe' or '.cmd'. */ - UV_PROCESS_WINDOWS_FILE_PATH_EXACT_NAME = (1 << 7) + UV_PROCESS_WINDOWS_FILE_PATH_EXACT_NAME = (1 << 7), + /* + * Spawn the child process with the error mode of its parent. + * This option is only meaningful on Windows systems. On Unix + * it is silently ignored. + */ + UV_PROCESS_WINDOWS_USE_PARENT_ERROR_MODE = (1 << 8), /* * Set the child process' supplementary group ids. The group ids are supplied * in the 'gids' field in the options struct, and the number of groups is