Commit Graph
22127 Commits
Author SHA1 Message Date
Joel Sherrill 7504be6c0c Removed. 1999-04-06 22:15:18 +00:00
Joel Sherrill 3c0e80c36a Patch from Ralf Corsepius <corsepiu@faw.uni-ulm.de> to preinstall
all bsp_specs.
1999-04-06 22:07:36 +00:00
Joel Sherrill 5cf555e10a Corrections by Jennifer. 1999-04-06 22:04:08 +00:00
Joel Sherrill b08d3ed989 Untar support submitted by Jake Janovetz <janovetz@tempest.ece.uiuc.edu>. 1999-04-06 21:45:06 +00:00
Joel Sherrill 01a9d941b3 Patch from Andrew Bray <andy@chaos.org.uk>:
In your various bsp_specs files, even when ecrti.o is defined as a
   startfile, ecrtn.o is not defined as an endfile.  Instead it seems to
   be in the library list - untidy.
1999-04-06 20:39:17 +00:00
Joel Sherrill 676b50455d Patch from Eric Norum <eric@skatter.usask.ca>:
I'd like to make the following change which adds the m360 structure
    information to the debugging symbols in the final executable.  This
    makes it much easier to use the debugger to look at the elements of
    the m360 structure.
1999-04-06 20:27:45 +00:00
Joel Sherrill a37be5c4e2 Eric Norum <eric@skatter.usask.ca> noticed that the documentation and
configure scripts did not match on the default value of --enable-tests.
1999-04-06 20:25:40 +00:00
Joel Sherrill 6a6d860814 Updated. 1999-04-06 16:54:02 +00:00
Joel Sherrill e53c4a37bb Cleaning up unused files. 1999-04-06 15:45:21 +00:00
Joel Sherrill 9927f2060c Changed dates. 1999-04-02 18:00:06 +00:00
Joel Sherrill c7b1cb566d Added RTEMS Remote Debugger Server Specifications links. 1999-04-02 17:59:50 +00:00
Joel Sherrill fa8f29d2ef Fixed target name. 1999-04-02 17:59:23 +00:00
Joel Sherrill 02b7a13e90 Added Network Servers Chapter including Jake Janovetz's ftpd server. 1999-04-02 17:58:57 +00:00
Joel Sherrill 65beca61d4 Now at least a version of the figures shows up in the html although
there are no captions.
1999-04-02 17:41:37 +00:00
Joel Sherrill 64e0f6c40c Can now produce html, info, and PostScript without errors. Links
between chapters are correct.
1999-04-02 17:23:36 +00:00
Joel Sherrill 5a8e90c56f Accidentally added the .tex file not the .texi root document.
Also the Makefile had "@include" lines in it.
1999-04-02 17:07:33 +00:00
Joel Sherrill bea606aee5 New files. This manual was ritten by Eric Valette <valette@crf.canon.fr>
and Emmanuel Raguet <raguet@crf.canon.fr>.  It was submitted in LaTeX
and converted to Texinfo by Joel.  At this point, the figures are
largely ignored except to put in an example block to show they are
missing.

The Makefile should be just enough to produce output with no links between
chapters.
1999-04-02 17:04:27 +00:00
Joel Sherrill 85e24a3237 Patch from Emmanuel Rauget (raguet@crf.canon.fr) to add a htons on the
sin_port.
1999-04-02 14:39:19 +00:00
Joel Sherrill 5345873a5b New file. Text from Jake Janovetz. 1999-04-01 21:43:50 +00:00
Joel Sherrill f72dd2a9fa Patch from Ralf Corsepius <corsepiu@faw.uni-ulm.de> to address problems
on BSPs that install there own tools.
1999-04-01 16:58:06 +00:00
Joel Sherrill 517660f192 Moved sparc specific version of in_cksum_hdr to an inline routine like
the reset of the CPU specific implementations after comment from
Eric Norum.
1999-04-01 16:36:22 +00:00
Joel Sherrill 5eb7da97cd Disable IXON by default based on comment from Eric Norum
<e.norum@sk.sympatico.ca> and concerns from Thomas Doerfler
<td@imd.m.ISAR.de> when he submitted the patch:

  Since enabling XON/XOFF has such a major performance hit on `smart' output
  devices I think it should be *off* by default.  I think some thought should
  be given to adding hooks for hardware that can support XON/XOFF without
  software intervention, or for hardware like the 68360 SCC's that can use
  large buffers, but still handle special characters immediately.

  The patch you sent is a very good start, though.  I just think that the
  software flow control should be off -- to match the way the serial I/O
  support has worked up until now.
1999-04-01 16:20:03 +00:00
Joel Sherrill 656dabf1fa Removed warning. 1999-04-01 15:51:14 +00:00
Joel Sherrill 414e1b30d0 changed version to 19990331 1999-03-31 23:56:34 +00:00
Joel Sherrill 77a0067335 changed version to 199900331 1999-03-31 23:36:18 +00:00
Joel Sherrill 18040d302c Patch from Thomas Doerfler <td@imd.m.ISAR.de> to add flow control:
Some lines for "documentation":
    ======================================
    One thing should be noted: when XON/XOFF is enabled, the serial
    device will always work with one-character buffers, so the interrupt
    load for the CPU might get higer, especially on devices like MC68360
    and MPC860, where the serial channels are capable of using big
    buffers. But, once again, this only happens when XON/XOFF is actually
    selected.

    Please note that the flag IXON is set by default, so outgoing
    XON/XOFF flow control is enabled by default.

    XON/XOFF is controlled using the "standard" fields IXON/IXOFF in the
    termios structure. The termios flag IXANY is not (yet) supported.

    Hardware handshake for the incoming data stream is controlled using
    the standard flag CRTSCTS. If this flag is set, whenever the receive
    buffer is almost full, the driver function "device.stopRemoteTx()" is
    called, when the receive buffer has more space available,
    "device.startRemoteTx()" is called again.  If the driver does not
    provide these interface functions (entries in device structure are
    NULL pointers), then these calls are suppressed.

    Changes of the flow control options during operation should work at
    any time, but this has not been extensively tested.

    No changes to the device driver interface are needed.
    ================================================

    One critical point when using this patch might be, that any BSP using
    this version of termios will now have outgoing flow control enabled
    by default, so the behaviour of these BSPs will change here. The
    option IXON has already been set in older termios by default, but it
    did not work until this patch. Maybe this option should be switched
    off by default, what do you think?
1999-03-31 23:35:22 +00:00
Joel Sherrill ecab6a3917 Regenerated. 1999-03-31 23:29:19 +00:00
Joel Sherrill 79800f9ee5 Fixed include file paths. 1999-03-31 23:27:03 +00:00
Joel Sherrill c08f283ea0 Fixed typo so applications would link. 1999-03-31 23:25:53 +00:00
Jennifer Averett ec2328eeaf Removed asserts that shouldn't be called and commented case where this
indicates an internal error.
1999-03-31 23:24:57 +00:00
Joel Sherrill 8cc57f626b Modified to be valid m68k code on all CPU models. 1999-03-31 23:24:51 +00:00
Jennifer Averett f719ef12ff Corrected return value. 1999-03-31 23:23:52 +00:00
Jennifer Averett 3f06c298b4 Added prints for calls into the file system. Added O_EXCL for an open that
tested that the same file could not be created twice.
1999-03-31 23:22:42 +00:00
Joel Sherrill 73b943bc97 Fixed paths to include files so this will build. 1999-03-31 23:21:19 +00:00
Jennifer Averett 912f74ae47 Modified file to match output. 1999-03-31 23:20:43 +00:00
Joel Sherrill 6b719b8d12 Fixed typos and mistakes related to adding gnatsupp. 1999-03-31 23:20:35 +00:00
Joel Sherrill c5f2e5b1ba Regenerated. 1999-03-31 23:11:47 +00:00
Joel Sherrill 0e78ec3ad6 Removed warnings. 1999-03-31 23:11:38 +00:00
Joel Sherrill 5cfcd7ec42 Removed warnings. 1999-03-31 22:59:13 +00:00
Joel Sherrill f4709895cd Removed warning. 1999-03-31 22:51:44 +00:00
Joel Sherrill 6a107099d7 Patch from Chris Johns <ccj@acm.org>:
joel@OARcorp.com wrote:
>
> Chris,
>
> sp09 fails on the rtems_port_delete(0) call.  This is supposed to give an
> invalid id error.  I can't find any changes other than the unlimited
> objects patch which would have tripped this so would appreciate it if you
> could look into it.  I suspect that this is a side-effect of the unlimited
> objects patch.
>

It is me.

>
> Basically, there are 0 ports configured in sp09.  The test ends up
> dereferecing NULL in local_table[0] and comes up with a non-NULL invalid
> pointer.
>

The issue is not actually allocating a local_table for an object type
which has a maximum value of 0. I cannot remember the exact workings of
the id values and the local_table. I might have changed the nature from
the pre-unlimited change. As you know the id's are an interesting game
where performance is most important.

>
> I know the problem could be solved by adding a check for index == 0.  But
> I hate to slow this path down.  I think you may have changed the way the
> object information structure gets initialized.
>

---- CVS log ----

This change lets the unlimited and sp09 tests run on the posix Linux
BSP. A static local variable `null_local_table' has been added. This
variable is always set to NULL. The `**local_table' element of the
information structure is set to point to this variable earily in the
initialisation. If the object type has more than 0 elements the
`local_table' element is updated. All object types which have 0 elements
reference `null_local_table'. This change fixes the problem sp09 found
yet does not add any extra processing to the critical
`_Objects_Get_local_object' function.

---- CVS log ----
1999-03-31 22:33:14 +00:00
Joel Sherrill 5c959963df When compiled in debug mode, the POSIX threads inline file was not
included and we ended up with undefined references.
1999-03-31 22:09:11 +00:00
Joel Sherrill cb0f1fc5ac Another attempt to get runtest installed. 1999-03-31 22:05:43 +00:00
Joel Sherrill efa0baa5e7 Patch from Eric Norum <eric@skatter.usask.ca> which changed the exit
sequence.
1999-03-31 20:51:07 +00:00
Joel Sherrill ceb06d9650 Removed warning for `#ifdef' argument starts with punctuation. 1999-03-30 17:43:51 +00:00
Joel Sherrill 707d4d00d6 Removed warning for const removal. 1999-03-30 17:42:25 +00:00
Joel Sherrill 5c6c4c24d9 Fixed typo where _POSIX_signals_Clear_process_signals was not prototyped
and _POSIX_signals_Set_process_signals was done twice.
1999-03-30 17:41:26 +00:00
Joel Sherrill eacc8e3b88 Patch from "Tony R. Ambardar" <tonya@ece.ubc.ca> and blessed by
Ian Lance Taylor <ian@airs.com> to note that condition codes
are modified.
1999-03-30 17:39:08 +00:00
Joel Sherrill a43ad5cd29 Patch from Tony R. Ambardar <tonya@ece.ubc.ca> to add byte wide
register support to this driver.
1999-03-30 15:54:37 +00:00
Joel Sherrill 6a4096b224 Patch to add shutdown() routine from Tony R. Ambardar <tonya@ece.ubc.ca>. 1999-03-30 15:40:29 +00:00