summaryrefslogtreecommitdiffstats
path: root/c (unfollow)
Commit message (Collapse)AuthorFilesLines
1999-10-27The rxgen960 BSP and i960 RPM support was submitted by Mark BronsonJoel Sherrill77-44/+7151
<mark@ramix.com> of RAMIX.
1999-10-27First attempt at icluding Eric Valette and Emmanuel Raguet.Joel Sherrill1-0/+6
1999-10-27Warnings removed. Still don't know what to do about the pragmaJoel Sherrill3-10/+16
pack warnings in uemf.h.
1999-10-27Patch from Emmanuel Raguet <raguet@crf.canon.fr> and Eric ValetteJoel Sherrill36-3/+12134
<valette@crf.canon.fr> to add a port of the GoAhead web server (httpd) to the RTEMS build tree. They have successfully used this BSP on i386/pc386 and PowerPC/mcp750. Mark and Joel spoke with Nick Berliner <nickb@goahead.com> on 26 Oct 1999 about this port and got verbal approval to include it in RTEMS distributions.
1999-10-26New files created by split of old imfs_handlers.c.Joel Sherrill9-0/+333
1999-10-26Added include of libio.h so this would compile when posix is disabled.Joel Sherrill3-0/+3
1999-10-26Split console_reserve_resources to separate file to reduceJoel Sherrill3-7/+42
code size.
1999-10-26Added initial cut at miniIMFS which leaves out memfile and directoryJoel Sherrill31-837/+679
readdir support. The next step is to add a mount table and configure either the miniIMFS or the full IMFS at the application level.
1999-10-26Patch from Gerwin Pfab <pb@schenk.isar.de> to leave dispatchingJoel Sherrill1-3/+4
disabled on exit to ISR Thread dispatching. This allows a context switch to finish under high high interrupt rates.
1999-10-26Patch from Emmanuel Raguet <raguet@crf.canon.fr> to fix a small bug whereJoel Sherrill1-1/+1
the receive buffer size was 16 bytes too small.
1999-10-26Increased minimum stack size to ensure that there are no problemsJoel Sherrill2-2/+2
running the network stack.
1999-10-26Patch from Emmanuel Raguet <raguet@crf.canon.fr> to add missing fileJoel Sherrill2-2/+2
reference to the Makefile.
1999-10-26Removed all references to HOST_ARCH including the file gcc.cfg.in. AllJoel Sherrill4-231/+0
host programs are now compiled with automake generated rules. This was done after discussions with Ralf Corsepius and Eric Norum.
1999-10-26idir=/opt/tmp/opt/rtemsJoel Sherrill6-21/+12
rdir=/opt/rtems cd $idir find . -type f | while read file do if [ ! -f ${file} ] ; then echo ${file} missing fi done
1999-10-26cat /tmp/j | while read fJoel Sherrill54-7836/+0
do rpm -qi $f 2>&1 | grep -v "is not ins" done
1999-10-26Patch from Ralf Corsepius <corsepiu@faw.uni-ulm.de> to moveJoel Sherrill6-9/+8
c/src/lib/libmisc to c/src/libmisc.
1999-10-26cat /tmp/j | while read fJoel Sherrill42-5982/+0
do rpm -qi $f 2>&1 | grep -v "is not ins" done
1999-10-26Patch rtems-rc-19991011-0.diff from Ralf Corsepius <corsepiu@faw.uni-ulm.de>Joel Sherrill2-6/+5
fixes a minor configuration bug.
1999-10-26New ideas on test incorporated.Joel Sherrill1-9/+17
1999-10-26Modifications from Erik Ivanenko <erik.ivanenko@utoronto.ca> to addJoel Sherrill2-5/+17
proper Multiboot signature to pc386 BSP. This enables Grub to recognize the image.
1999-10-26Patch from Erik Ivanenko <erik.ivanenko@utoronto.ca> to fix someJoel Sherrill1-28/+68
reported bugs in the start code.
1999-10-25Patch from Eric Norum <eric@cls.usask.ca> to address the following problemJoel Sherrill2-2/+2
report from Philip A. Prindeville <philipp@zembu.com>: I was working on a device driver for a certain ethernet chipset that occassionally wraps in its buffer, and causes a resulting mbuf chain with only a few dozen bytes in the first mbuf of the chain. I wouldn't have thought this would be a problem, until I ran some stress tests that flooded the ethernet receiver with packets and started to get panics here: 250 251 if (m->m_pkthdr.len < sizeof(struct ip)) 252 goto tooshort; 253 254 #ifdef DIAGNOSTIC 255 if (m->m_len < sizeof(struct ip)) 256 panic("ipintr mbuf too short"); 257 #endif 258 259 if (m->m_len < sizeof (struct ip) && 260 (m = m_pullup(m, sizeof (struct ip))) == 0) { 261 ipstat.ips_toosmall++; 262 return; 263 } 264 ip = mtod(m, struct ip *); and the panic was at line 256. But if I #undef'd DIAGNOSTICS, then the m_pullup() at line 260 does the right thing and the packet ends up being processed just fine. So I started wondering, (a) why was the test checking for something that apparently wasn't a fatal condition but rather one that is subsequently recovered from a couple of lines later and (b) why panic as a diagnostic "aid" from a recoverable condition rather than just (say) log a message to the console? All of this seems overly severe for no reason that is readily apparent to me.
1999-10-25Patch from Charles-Antoine Gauthier <charles.gauthier@iit.nrc.ca>Joel Sherrill1-0/+8
to initialize the pthread cancellation fields. This is a patch to _POSIX_Threads_Create_extension that fixes the problem.
1999-10-25Added notes for new test.Joel Sherrill1-0/+19
1999-10-25tch from Eric Valette <valette@crf.canon.fr> and Emmanuel RaguetJoel Sherrill2-72/+72
<raguet@crf.canon.fr> to fix bugs and make the mcp750 boot RTEMS running the GoAhead web server.
1999-10-25Patch from Eric Valette <valette@crf.canon.fr> and Emmanuel RaguetJoel Sherrill3-21/+24
<raguet@crf.canon.fr> to use a local variable.
1999-10-25Added code to correctly free any allocated space during the evaluationJennifer Averett4-144/+148
process.
1999-10-25Added sp26 which tests the rtems_task_is_suspended directive.Joel Sherrill8-1/+332
1999-10-25Modified to ease comparison of screen to target output.Joel Sherrill4-1092/+1092
1999-10-25Modified to reflect test change where reinitialize mutex test case wasJoel Sherrill1-1/+1
removed.
1999-10-25Removed reinitialize mutex test case to reflect earlier code change inJoel Sherrill1-1/+8
the executive.
1999-10-25Changed leading spaces to periods to ease comparing test output.Joel Sherrill3-3/+3
1999-10-25Modified to produce correct output with new version of sis.Joel Sherrill1-1/+6
1999-10-21Removed warning.Joel Sherrill1-0/+2
1999-10-21Increased stack size of initialization thread.Joel Sherrill1-0/+2
1999-10-21Added rtems_semaphore_flush directive.Joel Sherrill3-1/+105
1999-10-21Renamed CONFIGURE_POSIX_INIT_TASK_STACK_SIZE toJoel Sherrill1-6/+6
CONFIGURE_POSIX_INIT_THREAD_STACK_SIZE because in POSIX they are threads.
1999-10-21Fixed core dump caused when output parameter (otimer) was NULL.Joel Sherrill1-3/+7
1999-10-21Added Semaphore_Flush.Joel Sherrill2-0/+18
1999-10-20Added prototype for rtems_task_is_suspended at request ofJoel Sherrill1-1/+12
Eric Norum.
1999-10-12Spacing.Joel Sherrill3-0/+3
1999-10-12Split null handlers table to own file and renamed.Joel Sherrill19-163/+44
Renamed IMFS handler tables to include IMFS prefix.
1999-10-12Added rtems_filesystem_freenode() macro and added calls at appropriateJoel Sherrill35-188/+140
places to make sure memory allocated for filesystem specifif nodes gets freed.
1999-10-12Fixed spacing.Joel Sherrill3-3/+3
1999-10-12Corrected mistakes in the IMFS file handlers table and added the missingJoel Sherrill10-31/+301
routine imfs_fcntl.c
1999-10-12Added call to freenod to let each filesystem free its own internalJoel Sherrill31-140/+470
node used to manage file access.
1999-10-12Changed bcopy to strncpy to stick to ANSI/ISO routines.Joel Sherrill2-2/+2
1999-10-11Moved RTEMS error and association from libmisc to libc support toJoel Sherrill7-13/+13
avoid cyclic dependencies generated when moving packages to the top level.
1999-10-11Removed targets and configurations that are no longer functionalJoel Sherrill14-1428/+0
and not likely to become so. Comments on each configuration are below. + Force CPU386 - This BSP was developed as part of the initial port of RTEMS to the i386. This board has been unavailable for a long time now. + GO32 - This BSP and some CPU code supported djgpp v1.x. This version is now quite old. No one has stepped forward to update the code to v2.x which may be technically impossible anyway. More importantly, go32 has been superceded by the pc386 BSP.
1999-10-11Added as part of moving librdbg to its own top level package. This wasJoel Sherrill6-0/+141
done as part of a patch from Ralf Corsepius <corsepiu@faw.uni-ulm.de>.