summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@oarcorp.com>2012-06-11 12:26:21 -0500
committerJoel Sherrill <joel.sherrill@oarcorp.com>2012-06-11 12:26:21 -0500
commit97bda25c0e5125954e02024a9adcf36dc599a89c (patch)
tree3393b642e67b050ac2c98aee673445f5449313a7
parentlibrpc: PR2066: Fix for short enums (diff)
downloadrtems-97bda25c0e5125954e02024a9adcf36dc599a89c.tar.bz2
threadhandler.c: Fix spelling of __main() in prototype
-rw-r--r--cpukit/score/src/threadhandler.c13
1 files changed, 8 insertions, 5 deletions
diff --git a/cpukit/score/src/threadhandler.c b/cpukit/score/src/threadhandler.c
index e89228e3cf..ba53fc3bc7 100644
--- a/cpukit/score/src/threadhandler.c
+++ b/cpukit/score/src/threadhandler.c
@@ -1,8 +1,11 @@
-/*
- * Thread Handler
- *
+/**
+ * @file
*
- * COPYRIGHT (c) 1989-2011.
+ * Initialization Wrapper for all Threads.
+ */
+
+/*
+ * COPYRIGHT (c) 1989-2012.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
@@ -49,7 +52,7 @@
#endif
#if defined(__USE__MAIN__)
- extern void _main(void);
+ extern void __main(void);
#define INIT_NAME __main
#define EXECUTE_GLOBAL_CONSTRUCTORS
#endif