Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2010-09-23 12:07:47 +0400
committerCorinna Vinschen <corinna@vinschen.de>2010-09-23 12:07:47 +0400
commit49961454868072334f5fc9289820b191260e1dc0 (patch)
tree3bc80726db20d6d79ccb09a30c61d9ff35983bac /libgloss/doc
parent631c8d784bccb93a87fb9ef95245548cb81a2fbb (diff)
* doc/porting.texi: Fix typos.
Diffstat (limited to 'libgloss/doc')
-rw-r--r--libgloss/doc/porting.texi24
1 files changed, 12 insertions, 12 deletions
diff --git a/libgloss/doc/porting.texi b/libgloss/doc/porting.texi
index eca88cabe..9e1d9286e 100644
--- a/libgloss/doc/porting.texi
+++ b/libgloss/doc/porting.texi
@@ -104,18 +104,18 @@ the final executable image.
Most of the time a tool chain does only have to support one target
execution environment. An example of this would be a tool chain for the
AMD 29k processor family. All of the execution environments for this
-processor are have the same interface, the same memory map, and the same
-I/O code. In this case all of the support code is in newlib/sys/FIXME.
-Libgloss's creation was forced initially be the @code{cpu32} processor
-family. There are many different execution environments for this line,
-and they vary wildly. newlib itself has only has a few dependencies that
-it needs for each target. These are explained later in this doc. The
-hardware dependent part of newlib was reorganized into a separate
-directory structure within newlib called the stub dirs. It was initially
-called this because most of the routines newlib needs for a target were
-simple stubs that do nothing, but return a value to the application. They
-only exist so the linker can produce a final executable image. This work
-was done during the early part of 1993.
+processor have the same interface, the same memory map, and the same
+I/O code. In this case all of the support code is under newlib/libc/sys.
+Libgloss's creation was forced initially because of the @code{cpu32}
+processor family. There are many different execution environments for
+this line, and they vary wildly. newlib itself has only a few
+dependencies that it needs for each target. These are explained later in
+this doc. The hardware dependent part of newlib was reorganized into a
+separate directory structure within newlib called the stub dirs. It was
+initially called this because most of the routines newlib needs for a
+target were simple stubs that do nothing, but return a value to the
+application. They only exist so the linker can produce a final
+executable image. This work was done during the early part of 1993.
After a while it became apparent that this approach of isolating the
hardware and systems files together made sense. Around this same time