This is the mail archive of the ecos-patches@sourceware.org mailing list for the eCos project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Typo fix in posix


bugzilla bug #1000373, a simple typo.

         Andrew
Index: packages/compat/posix/current/ChangeLog
===================================================================
RCS file: /cvs/ecos/ecos/packages/compat/posix/current/ChangeLog,v
retrieving revision 1.52
diff -u -r1.52 ChangeLog
--- packages/compat/posix/current/ChangeLog	18 Jul 2006 16:00:46 -0000	1.52
+++ packages/compat/posix/current/ChangeLog	12 Jun 2007 20:24:44 -0000
@@ -1,3 +1,7 @@
+2007-06-12  Richard.Yuan <lemonskin@tom.com>
+
+	* src/except.cxx (install_handlers): Fixed typo. Bug #1000373
+	
 2006-07-18  Jonathan Larmour  <jifl@eCosCentric.com>
 
 	* src/signal.cxx (pause): Although already POSIX compliant, if we wait
Index: packages/compat/posix/current/src/except.cxx
===================================================================
RCS file: /cvs/ecos/ecos/packages/compat/posix/current/src/except.cxx,v
retrieving revision 1.4
diff -u -r1.4 except.cxx
--- packages/compat/posix/current/src/except.cxx	23 May 2002 22:59:58 -0000	1.4
+++ packages/compat/posix/current/src/except.cxx	12 Jun 2007 20:24:44 -0000
@@ -280,7 +280,7 @@
     {
         thread->register_exception( exception_signal_mapping[i].exception,
                                     cyg_posix_exception_handler,
-                                    exception_signal_mapping[i].signal,,
+                                    exception_signal_mapping[i].signal,
                                     NULL,
                                     NULL);
     }

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]