fix two typos

Signed-off-by: wanggang26 <wanggang26@xiaomi.com>
This commit is contained in:
wanggang26 2024-04-08 18:31:46 +08:00 committed by Alan C. Assis
parent 89e5ceb51e
commit 584931aa0d
3 changed files with 4 additions and 4 deletions

View File

@ -87,7 +87,7 @@ static int load_default_priority(FAR struct binary_s *bin)
* Name: load_absmodule * Name: load_absmodule
* *
* Description: * Description:
* Load a module into memory, bind it to an exported symbol take, and * Load a module into memory, bind it to an exported symbol table, and
* prep the module for execution. filename is known to be an absolute * prep the module for execution. filename is known to be an absolute
* path to the file to be loaded. * path to the file to be loaded.
* *
@ -140,7 +140,7 @@ static int load_absmodule(FAR struct binary_s *bin, FAR const char *filename,
* Name: load_module * Name: load_module
* *
* Description: * Description:
* Load a module into memory, bind it to an exported symbol take, and * Load a module into memory, bind it to an exported symbol table, and
* prep the module for execution. * prep the module for execution.
* *
* Returned Value: * Returned Value:

View File

@ -280,7 +280,7 @@ typedef CODE void (*addrenv_sigtramp_t)(_sa_sigaction_t sighand, int signo,
FAR siginfo_t *info, FAR siginfo_t *info,
FAR void *ucontext); FAR void *ucontext);
struct mm_heaps_s; /* Forward reference */ struct mm_heap_s; /* Forward reference */
/* This structure describes the format of the .bss/.data reserved area */ /* This structure describes the format of the .bss/.data reserved area */

View File

@ -75,7 +75,7 @@
* Public Type Definitions * Public Type Definitions
****************************************************************************/ ****************************************************************************/
struct mm_heaps_s; /* Forward reference */ struct mm_heap_s; /* Forward reference */
/* Every user-space blob starts with a header that provides information about /* Every user-space blob starts with a header that provides information about
* the blob. The form of that header is provided by struct userspace_s. An * the blob. The form of that header is provided by struct userspace_s. An