Fix 'the the'

This commit is contained in:
Gregory Nutt 2017-01-29 07:52:44 -06:00
parent 34e539926a
commit 3af8da9c48
4 changed files with 7 additions and 7 deletions

View File

@ -99,7 +99,7 @@ int dlclose(FAR void *handle)
#elif defined(CONFIG_BUILD_PROTECTED) #elif defined(CONFIG_BUILD_PROTECTED)
/* The PROTECTED build is equivalent to the FLAT build EXCEPT that there /* The PROTECTED build is equivalent to the FLAT build EXCEPT that there
* must be two copies of the the module logic: One residing in kernel * must be two copies of the module logic: One residing in kernel
* space and using the kernel symbol table and one residing in user space * space and using the kernel symbol table and one residing in user space
* using the user space symbol table. * using the user space symbol table.
* *
@ -123,4 +123,4 @@ int dlclose(FAR void *handle)
#warning Missing logic #warning Missing logic
return -ENOSYS; return -ENOSYS;
#endif #endif
} }

View File

@ -188,7 +188,7 @@ FAR void *dlopen(FAR const char *file, int mode)
#elif defined(CONFIG_BUILD_PROTECTED) #elif defined(CONFIG_BUILD_PROTECTED)
/* The PROTECTED build is equivalent to the FLAT build EXCEPT that there /* The PROTECTED build is equivalent to the FLAT build EXCEPT that there
* must be two copies of the the module logic: One residing in kernel * must be two copies of the module logic: One residing in kernel
* space and using the kernel symbol table and one residing in user space * space and using the kernel symbol table and one residing in user space
* using the user space symbol table. * using the user space symbol table.
* *

View File

@ -89,7 +89,7 @@ FAR void *dlsym(FAR void *handle, FAR const char *name)
#elif defined(CONFIG_BUILD_PROTECTED) #elif defined(CONFIG_BUILD_PROTECTED)
/* The PROTECTED build is equivalent to the FLAT build EXCEPT that there /* The PROTECTED build is equivalent to the FLAT build EXCEPT that there
* must be two copies of the the module logic: One residing in kernel * must be two copies of the module logic: One residing in kernel
* space and using the kernel symbol table and one residing in user space * space and using the kernel symbol table and one residing in user space
* using the user space symbol table. * using the user space symbol table.
* *
@ -113,4 +113,4 @@ FAR void *dlsym(FAR void *handle, FAR const char *name)
#warning Missing logic #warning Missing logic
return NULL; return NULL;
#endif #endif
} }

View File

@ -76,7 +76,7 @@ int dlsymtab(FAR const struct symtab_s *symtab, int nsymbols)
#elif defined(CONFIG_BUILD_PROTECTED) #elif defined(CONFIG_BUILD_PROTECTED)
/* The PROTECTED build is equivalent to the FLAT build EXCEPT that there /* The PROTECTED build is equivalent to the FLAT build EXCEPT that there
* must be two copies of the the module logic: One residing in kernel * must be two copies of the module logic: One residing in kernel
* space and using the kernel symbol table and one residing in user space * space and using the kernel symbol table and one residing in user space
* using the user space symbol table. * using the user space symbol table.
* *
@ -100,4 +100,4 @@ int dlsymtab(FAR const struct symtab_s *symtab, int nsymbols)
#warning Missing logic #warning Missing logic
return NULL; return NULL;
#endif #endif
} }