summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fixing many lines that are too long to format cleanly.Joel Sherrill1999-10-259-50/+54
|
* Added information on how the directory is stored for future referanceJennifer Averett1999-10-251-2/+3
| | | | during a mount.
* Formatting improvements.Joel Sherrill1999-10-253-12/+80
|
* Enabled Ada95 interrupt support chapter and reformatted aJoel Sherrill1999-10-256-35/+48
| | | | bunch of stuff to avoid line wrappings.
* Patch from Eric Norum <eric@cls.usask.ca> to address the following problemJoel Sherrill1999-10-253-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* Patch from Charles-Antoine Gauthier <charles.gauthier@iit.nrc.ca>Joel Sherrill1999-10-252-0/+16
| | | | | to initialize the pthread cancellation fields. This is a patch to _POSIX_Threads_Create_extension that fixes the problem.
* Added notes for new test.Joel Sherrill1999-10-251-0/+19
|
* Made html links browsable.Charles Phillips1999-10-251-4/+3
|
* tch from Eric Valette <valette@crf.canon.fr> and Emmanuel RaguetJoel Sherrill1999-10-253-73/+73
| | | | | <raguet@crf.canon.fr> to fix bugs and make the mcp750 boot RTEMS running the GoAhead web server.
* Made urls browsable links.Charles Phillips1999-10-251-3/+3
|
* Made html urls browsable links.Charles Phillips1999-10-251-1/+1
|
* Made html urls browable links. Updated the reference to theCharles Phillips1999-10-251-6/+48
| | | | | U.S. Army Missile Command to show the merger with the Aviation Command
* Patch from Eric Valette <valette@crf.canon.fr> and Emmanuel RaguetJoel Sherrill1999-10-254-28/+32
| | | | <raguet@crf.canon.fr> to use a local variable.
* Added code to correctly free any allocated space during the evaluationJennifer Averett1999-10-256-216/+222
| | | | process.
* Merged scripts-19991022-0 changes from Ralf.Joel Sherrill1999-10-2510-122/+82
|
* Changed to use interrupt driven console.Joel Sherrill1999-10-251-1/+1
|
* Added sp26 which tests the rtems_task_is_suspended directive.Joel Sherrill1999-10-2514-2/+582
|
* Modified to ease comparison of screen to target output.Joel Sherrill1999-10-258-2184/+2184
|
* Modified to reflect test change where reinitialize mutex test case wasJoel Sherrill1999-10-252-2/+2
| | | | removed.
* Removed reinitialize mutex test case to reflect earlier code change inJoel Sherrill1999-10-252-2/+16
| | | | the executive.
* Changed leading spaces to periods to ease comparing test output.Joel Sherrill1999-10-254-4/+4
|
* Modified to produce correct output with new version of sis.Joel Sherrill1999-10-251-1/+6
|
* Swapped SO_SNDWAKEUP and SO_RCVWAKEUP in many places since they wereJoel Sherrill1999-10-251-11/+10
| | | | backwards.
* Changed version number.Joel Sherrill1999-10-251-1/+1
|
* Removed warning.Joel Sherrill1999-10-212-0/+4
|
* Now builds RPM without complete source. Each target is only 15K.Joel Sherrill1999-10-216-9/+59
|
* Made the RTEMS version get substituted properly even though it isJoel Sherrill1999-10-2114-9/+27
| | | | | | not right yet. Now can specify rpm_build_root via setup.
* Now can specify rpm_build_root via setup.Joel Sherrill1999-10-211-2/+2
| | | | Changed package name so generated RPM would have a nicer name.
* Increased stack size of initialization thread.Joel Sherrill1999-10-212-0/+4
|
* Added rtems_semaphore_flush directive.Joel Sherrill1999-10-215-1/+209
|
* Renamed CONFIGURE_POSIX_INIT_TASK_STACK_SIZE toJoel Sherrill1999-10-212-12/+12
| | | | CONFIGURE_POSIX_INIT_THREAD_STACK_SIZE because in POSIX they are threads.
* Fixed core dump caused when output parameter (otimer) was NULL.Joel Sherrill1999-10-212-6/+14
|
* Added sh-rtemself and m68k-rtemself.Joel Sherrill1999-10-2110-143/+176
|
* Changes from Ralf with script-19991021-0. He fixed the %filesJoel Sherrill1999-10-2119-135/+231
| | | | | | | | issue and has mkbspspec in a better state. user.cfg is now gone. There are some miscellaneous changes to buildall done by Joel to clean up the build process.
* Added Semaphore_Flush.Joel Sherrill1999-10-214-0/+36
|
* Shipping this all to Ralf.Joel Sherrill1999-10-212-6/+7
|
* Added prototype for rtems_task_is_suspended at request ofJoel Sherrill1999-10-202-2/+24
| | | | Eric Norum.
* Moved stuff to rtems subdirectory and made sure the system stillJoel Sherrill1999-10-207-19/+42
| | | | functioned.
* Moved stuff to rtems subdirectory and made sure the system stillJoel Sherrill1999-10-202-34/+37
| | | | | | functioned. Merged Ralf's changes into gccnewlib.spec.in.
* New file.Joel Sherrill1999-10-201-0/+50
|
* Miscellaneous improvements and cleanups committed so I can mergeJoel Sherrill1999-10-2013-199/+35
| | | | Ralf's end of day version.
* Moved rtems specific files into here.Joel Sherrill1999-10-201-0/+80
|
* Moving things to an rtems subdirectory like the other tools.Joel Sherrill1999-10-202-80/+0
|
* New file.Joel Sherrill1999-10-201-0/+177
|
* Added RPM release numbers.Joel Sherrill1999-10-202-10/+25
|
* Generated files removed.Joel Sherrill1999-10-2011-307/+155
|
* Obsoleted.Joel Sherrill1999-10-201-34/+0
|
* Obsoleted as they were distributed to subdirectories.Joel Sherrill1999-10-204-473/+0
|
* Made this more binutils like. :)Joel Sherrill1999-10-201-5/+9
|
* New file.Joel Sherrill1999-10-201-0/+104
|