diff --git a/Documentation/NuttxPortingGuide.html b/Documentation/NuttxPortingGuide.html index 23eeb5cb9ef..48a6b5fd984 100644 --- a/Documentation/NuttxPortingGuide.html +++ b/Documentation/NuttxPortingGuide.html @@ -2067,16 +2067,20 @@ extern void up_ledoff(int led);
  • CONFIG_FDCLONE_DISABLE: Disable cloning of all file descriptors - by task_create() when a new task is started. + by task_create() when a new task is started. + If set, all files/drivers will appear to be closed in the new task.
  • CONFIG_FDCLONE_STDIO: Disable cloning of all but the first three file descriptors (stdin, stdout, stderr) by task_create() when a new task is started. + If set, all files/drivers will appear to be closed in the new task except + for stdin, stdout, and stderr.
  • CONFIG_SDCLONE_DISABLE: Disable cloning of all socket desciptors by task_create() when a new task is started. + If set, all sockets will appear to be closed in the new task.