svn commit: trunk/uClibc: libc/misc/internals

psm at uclibc.org psm at uclibc.org
Wed Sep 21 22:53:55 UTC 2005


Author: psm
Date: 2005-09-21 15:53:33 -0700 (Wed, 21 Sep 2005)
New Revision: 11540

Log:
correct some typos

Modified:
   trunk/uClibc/Makefile
   trunk/uClibc/libc/misc/internals/__uClibc_main.c


Changeset:
Modified: trunk/uClibc/Makefile
===================================================================
--- trunk/uClibc/Makefile	2005-09-21 21:18:04 UTC (rev 11539)
+++ trunk/uClibc/Makefile	2005-09-21 22:53:33 UTC (rev 11540)
@@ -217,7 +217,7 @@
 	$(RM) $(PREFIX)$(DEVEL_PREFIX)include/getopt.h
 endif
 ifneq ($(strip $(HAS_SHADOW)),y)
-	# Remove getopt header since shadow password support is disabled.
+	# Remove shadow header since shadow password support is disabled.
 	$(RM) $(PREFIX)$(DEVEL_PREFIX)include/shadow.h
 endif
 	- at for i in `find  $(PREFIX)$(DEVEL_PREFIX) -type d` ; do \

Modified: trunk/uClibc/libc/misc/internals/__uClibc_main.c
===================================================================
--- trunk/uClibc/libc/misc/internals/__uClibc_main.c	2005-09-21 21:18:04 UTC (rev 11539)
+++ trunk/uClibc/libc/misc/internals/__uClibc_main.c	2005-09-21 22:53:33 UTC (rev 11540)
@@ -3,7 +3,7 @@
  * Erik Andersen              2002-2004
  *
  * __uClibc_main is the routine to be called by all the arch-specific
- * versions of crt0.S in uClibc.
+ * versions of crt1.S in uClibc.
  *
  * It is meant to handle any special initialization needed by the library
  * such as setting the global variable(s) __environ (environ) and
@@ -116,7 +116,7 @@
  * uClibc is the address of __uClibc_init
  *
  * In all other cases we call it from the main stub
- * __uClibc_start_main.
+ * __uClibc_main.
  */
 
 void __uClibc_init(void)
@@ -132,7 +132,7 @@
     __pagesize = PAGE_SIZE;
 
 #ifdef __UCLIBC_HAS_THREADS__
-    /* Before we start initialzing uClibc we have to call
+    /* Before we start initializing uClibc we have to call
      * __pthread_initialize_minimal so we can use pthread_locks
      * whenever they are needed.
      */
@@ -161,8 +161,8 @@
 
 void attribute_hidden (*__rtld_fini)(void) = NULL;
 
-/* __uClibc_start_main is the new main stub for uClibc. This function is
- * called from crt0 (version 0.9.16 or newer), after ALL shared libraries
+/* __uClibc_main is the new main stub for uClibc. This function is
+ * called from crt1 (version 0.9.28 or newer), after ALL shared libraries
  * are initialized, just before we call the application's main function.
  */
 void __attribute__ ((__noreturn__))




More information about the uClibc-cvs mailing list