changeset 1187:62fcf59de75c

Minor documentation fix
author bartv
date Mon, 01 Sep 2003 14:48:06 +0000
parents ce731bdf869c
children deed043a388c
files packages/kernel/current/ChangeLog packages/kernel/current/doc/kernel.sgml
diffstat 2 files changed, 5 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/packages/kernel/current/ChangeLog
+++ b/packages/kernel/current/ChangeLog
@@ -1,3 +1,7 @@
+2003-09-01  Bart Veer  <bartv@ecoscentric.com>
+
+	* doc/kernel.sgml: fix typo, cyg_thread vs. cyg_thread_t
+
 2003-07-18  Nick Garnett  <nickg@balti.calivar.com>
 
 	* cdl/counters.cdl: Removed the counters override CDL
--- a/packages/kernel/current/doc/kernel.sgml
+++ b/packages/kernel/current/doc/kernel.sgml
@@ -1178,7 +1178,7 @@ might be more appropriate to do this els
 static unsigned char producer_stack[PRODUCER_STACKSIZE];
 static unsigned char worker_stacks[NUMBER_OF_WORKERS][WORKER_STACKSIZE];
 static cyg_handle_t producer_handle, worker_handles[NUMBER_OF_WORKERS];
-static cyg_thread_t producer_thread, worker_threads[NUMBER_OF_WORKERS];
+static cyg_thread   producer_thread, worker_threads[NUMBER_OF_WORKERS];
 
 static void
 producer(cyg_addrword_t data)