diff --git a/Documentation/NuttxPortingGuide.html b/Documentation/NuttxPortingGuide.html
index ec36ac4d116..88155b8cadb 100644
--- a/Documentation/NuttxPortingGuide.html
+++ b/Documentation/NuttxPortingGuide.html
@@ -112,7 +112,7 @@
4.4.4 up_addrenv_vdata()
4.4.5 up_addrenv_select()
4.4.6 up_addrenv_restore()
- 4.4.7 up_addrenv_assign()
+ 4.4.7 up_addrenv_clone()
4.4.8 up_addrenv_attach()
4.4.9 up_addrenv_detach()
@@ -2960,8 +2960,8 @@ VxWorks provides the following comparable interface:
Restore an address environment.
up_addrenv_assign():
- Assign an address environment to a thread.
+ 4.4.7 up_addrenv_clone():
+ Copy an address environment from one location to another.
Tasking Support.
Other interfaces must be provided to support higher-level interfaces used by the NuttX tasking logic.
- These interfaces are* used by the functions in sched/ and all operate on the task group which as been assigned an address environment by up_addrenv_assign().
+ These interfaces are* used by the functions in sched/ and all operate on the task group which as been assigned an address environment by up_addrenv_clone().
OK) on success; a negated errno value on failure.
up_addrenv_assign()up_addrenv_clone()Function Prototype:
int up_addrenv_assign(FAR const group_addrenv_t *addrenv, FAR struct task_group_s *group);
+ int up_addrenv_clone(FAR const task_group_s *src, FAR struct task_group_s *dest);
Description:
Input Parameters:
addrenv: The representation of the group address environment previously returned by up_addrenv_create.group: The new task group to receive the address environment.src: The address environment to be copied.dest: The location to receive the copied address environment.Returned Value: