summaryrefslogtreecommitdiffstats
path: root/cpukit (unfollow)
Commit message (Collapse)AuthorFilesLines
2006-04-182006-04-18 Joel Sherrill <joel@OARcorp.com>Joel Sherrill2-1/+5
* aclocal/version.m4: Updated to rtems-4.6.99.3.
2006-04-13Fixed comment.Joel Sherrill1-1/+4
2006-04-132006-04-13 Joel Sherrill <joel@OARcorp.com>Joel Sherrill1-1/+1
PR 949/networking * libnetworking/sys/socket.h: GNU/Linux is wrong in making MSG_DONTWAIT public. It is strictly BSD and not SUSV. See http://www.opengroup.org/onlinepubs/009695399/basedefs/sys/socket.h.html for clarification.
2006-04-132006-04-13 Joel Sherrill <joel@OARcorp.com>Joel Sherrill1-0/+5
PR 949/networking * libnetworking/sys/socket.h:
2006-04-122006-04-12 Lars Munch <lars@segv.dk>Joel Sherrill2-1/+6
PR 949/networking * libnetworking/sys/socket.h: Make MSG_DONTWAIT public as in GNU/Linux.
2006-04-072006-04-06 Joel Sherrill <joel@OARcorp.com>Joel Sherrill6-8/+22
* posix/inline/rtems/posix/mutex.inl, posix/inline/rtems/posix/timer.inl, posix/macros/rtems/posix/cond.inl, posix/macros/rtems/posix/mutex.inl, posix/macros/rtems/posix/timer.inl: Fix warnings.
2006-04-07 * score/inline/rtems/score/threadmp.inl,Joel Sherrill3-0/+5
score/macros/rtems/score/threadmp.inl: Fix compile error.
2006-04-052006-04-05 Joel Sherrill <joel@OARcorp.com>Joel Sherrill7-15/+27
Victor V. Vengerov <Victor.Vengerov@oktetlabs.ru> * score/include/rtems/score/mpci.h, score/include/rtems/score/threadmp.h, score/inline/rtems/score/threadmp.inl, score/macros/rtems/score/threadmp.inl, score/src/threadmp.c, score/src/threadqenqueue.c: Victor spotted the problem that _MPCI_Receive_server_tcb and _Thread_MP_Receive were duplicate variables and needed to be set to the same value. I took that idea and just removed _Thread_MP_Receive. All uses are now _MPCI_Receive_server_tcb.
2006-03-27Eliminate undesired sign-extension.Eric Norum2-1/+5
2006-03-23Import from zlib-1.2.4Ralf Corsepius1-0/+12
2006-03-172006-03-17 Ralf Corsepius <ralf.corsepius@rtems.org>Ralf Corsepius2-1/+6
* cpu.c (_CPU_Initialize): Add fpu initialization.
2006-03-172006-03-17 Ralf Corsepius <ralf.corsepius@rtems.org>Ralf Corsepius2-0/+14
* rtems/score/cpu.h: Setup CPU_*_ENDIAN from GCC's__MIPS{EL|EB}__. (Partial merger of submission by Bruce Robinson <brucer@pmccorp.com>).
2006-03-082006-03-08 Joel Sherrill <joel@OARcorp.com>Joel Sherrill2-1/+8
PR 761/rtems * score/src/threadhandler.c: Add volatile cast so test is weak function is present will do something. Otherwise, it can be assume by gcc to always be a true condition.
2006-03-082006-03-08 Joel Sherrill <joel@OARcorp.com>Joel Sherrill5-8/+15
* itron/macros/rtems/itron/semaphore.inl, itron/macros/rtems/itron/task.inl: Fix warnings. * posix/macros/rtems/posix/cond.inl: Fix typo. * score/macros/rtems/score/heap.inl: Fix missed type change.
2006-03-07Added PR825 reference.Joel Sherrill1-1/+2
2006-03-072006-03-07 Till Strauman <strauman@slac.stanford.edu>Joel Sherrill2-1/+13
PR 830/filesystem * libcsupport/src/termios.c: termios ioctl(FIONREAD) reported wrong number of characters. So add chars in low-level/raw buffer to total count.
2006-03-072006-03-07 Steven Johnson <sjohnson@sakuraindustries.com>Joel Sherrill2-3/+44
PR 850/rtems * score/src/watchdogtickle.c: A Watchdog (used to timeout an event) with a delay of 1 sometimes does not seem to timeout. The problem occurs, because for whatever reason when the watchdog tickle function executes, the watchdog->delta_interval is 0. it is then decremented before being tested, becomes huge and so doesnt time out. It is thought there is a race condition where the watchdog->delta_interval is calculated by reference to a head (also with a delay of 1). But before it can be added after the head, the head is removed, so the new head now has a delay of 0.
2006-03-072006-03-07 Thomas Doerfler <Thomas.Doerfler@embedded-brains.de>Joel Sherrill2-76/+349
PR 852/filesystem * libblock/src/bdbuf.c: Increase performance of MSDOS file accesses by using a simple read-ahead and write-combining scheme. Improvement is dramatic.
2006-03-072006-03-07 Till Strauman <strauman@slac.stanford.edu>Joel Sherrill2-11/+22
PR 886/filesystem * libcsupport/src/libio.c: fcntl(fd,F_GETFL) fails to set O_NONBLOCK if the descriptor is in non-blocking mode.
2006-03-072006-03-07 Joel Sherrill <joel@OARcorp.com>Joel Sherrill5-8/+49
PR 866/rtems * score/include/rtems/system.h, score/include/rtems/score/isr.h, score/inline/rtems/score/thread.inl, score/macros/rtems/score/thread.inl: Added memory barriers to enter and exit of dispatching and interrupt critical sections so GCC will not optimize and reorder code out of a critical section.
2006-03-03Import from zlib-1.2.4Ralf Corsepius1-4/+4
2006-03-01FormattingJoel Sherrill1-9/+9
2006-02-28Just "cc" in the clobbered register list for interrupt enable/disable/flashEric Norum2-5/+24
operations. The "memory" barrier will move the the generic interrupt enable/disable/flash macros.
2006-02-082006-02-08 Thomas Rauscher <trauscher@loytec.com>Joel Sherrill2-0/+13
PR 890/networking * httpd/webs.c: The webservers enters an infinite loop when a POST request with less data than indicated in the Content-Length header is received. It also consumes additional heap memory and a file descriptor for each invalid POST.
2006-02-012006-02-01 Joel Sherrill <joel@OARcorp.com>Joel Sherrill2-1/+8
* rtems/score/cpu.h: Increase default stack size on i386 from 1K to 4K. Most i386 targets are not memory strapped so making this a bit large is not a burden. It lets more tests run. ticker and psxtimer will not even run with 1K of stack.
2006-02-012006-02-01 Joel Sherrill <joel@OARcorp.com>Joel Sherrill4-4/+11
* posix/inline/rtems/posix/cond.inl, posix/macros/rtems/posix/cond.inl, posix/src/conddestroy.c: Remove warnings.
2006-02-012006-02-01 Joel Sherrill <joel@OARcorp.com>Joel Sherrill5-8/+16
* rtems/src/tasks.c, rtems/src/taskvariableadd.c, rtems/src/taskvariabledelete.c, rtems/src/taskvariableget.c: Remove warnings.
2006-01-18Remove unused codeRalf Corsepius1-8/+0
2006-01-18Resurrect accidentially deleted file.Ralf Corsepius2-1/+48
2006-01-182006-01-18 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2-40/+38
* posix/include/intr.h, posix/include/rtems/posix/intr.h posix/include/rtems/posix/threadsup.h, posix/inline/rtems/posix/intr.inl. posix/macros/rtems/posix/intr.inl, posix/src/intr.c: Remove (Unused, dead). * posix/Makefile.am: Reflect changes above. Rework.
2006-01-18Remove.Ralf Corsepius6-771/+0
2006-01-18RegenerateRalf Corsepius1-0/+4
2006-01-182006-01-18 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2-4/+8
* posix/Makefile.am: Build devctl.
2006-01-162006-01-16 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius3-48/+65
* rtems/Makefile.am: Rework. * score/Makefile.am: Rework.
2006-01-162006-01-16 Joel Sherrill <joel@OARcorp.com>Joel Sherrill50-981/+2013
Large patch to improve Doxygen output. As a side-effect, grammar and spelling errors were corrected, spacing errors were address, and some variable names were improved. * libmisc/monitor/mon-object.c, libmisc/monitor/monitor.h: Account for changing OBJECTS_NO_CLASS to OBJECTS_CLASSIC_NO_CLASS. * score/Doxyfile: Set output directory. Predefine some macro values. Turn on graphical output. * score/include/rtems/debug.h, score/include/rtems/seterr.h, score/include/rtems/system.h, score/include/rtems/score/address.h, score/include/rtems/score/apiext.h, score/include/rtems/score/apimutex.h, score/include/rtems/score/bitfield.h, score/include/rtems/score/chain.h, score/include/rtems/score/context.h, score/include/rtems/score/coremsg.h, score/include/rtems/score/coremutex.h, score/include/rtems/score/coresem.h, score/include/rtems/score/heap.h, score/include/rtems/score/interr.h, score/include/rtems/score/isr.h, score/include/rtems/score/mpci.h, score/include/rtems/score/mppkt.h, score/include/rtems/score/object.h, score/include/rtems/score/objectmp.h, score/include/rtems/score/priority.h, score/include/rtems/score/stack.h, score/include/rtems/score/states.h, score/include/rtems/score/sysstate.h, score/include/rtems/score/thread.h, score/include/rtems/score/threadmp.h, score/include/rtems/score/threadq.h, score/include/rtems/score/tod.h, score/include/rtems/score/tqdata.h, score/include/rtems/score/userext.h, score/include/rtems/score/watchdog.h, score/include/rtems/score/wkspace.h, score/inline/rtems/score/address.inl, score/inline/rtems/score/chain.inl, score/inline/rtems/score/coremutex.inl, score/inline/rtems/score/coresem.inl, score/inline/rtems/score/heap.inl, score/inline/rtems/score/object.inl, score/inline/rtems/score/stack.inl, score/inline/rtems/score/thread.inl, score/inline/rtems/score/tqdata.inl, score/macros/README, score/src/heap.c, score/src/threadmp.c, score/src/threadready.c, score/src/threadstartmultitasking.c: Improve generated Doxygen output. Fix spelling and grammar errors in comments. Correct names of some variables and propagate changes.
2006-01-162006-01-16 Joel Sherrill <joel@OARcorp.com>Joel Sherrill16-31/+81
* rtems/score/cpu.h: Part of a large patch to improve Doxygen output. As a side-effect, grammar and spelling errors were corrected, spacing errors were address, and some variable names were improved.
2006-01-162006-01-16 Joel Sherrill <joel@OARcorp.com>Joel Sherrill4-8/+13
* rtems/new-exceptions/cpu.h, rtems/old-exceptions/cpu.h, rtems/score/cpu.h: Part of a large patch to improve Doxygen output. As a side-effect, grammar and spelling errors were corrected, spacing errors were address, and some variable names were improved.
2006-01-162006-01-16 Joel Sherrill <joel@OARcorp.com>Joel Sherrill4-58/+104
* rtems/asm.h, rtems/score/cpu.h, rtems/score/types.h: Part of a large patch to improve Doxygen output. As a side-effect, grammar and spelling errors were corrected, spacing errors were address, and some variable names were improved.
2006-01-15Keep compiler happy by making some casts explicit. (PR859)Eric Norum5-4/+10
2006-01-14Regenerate.Ralf Corsepius25-33/+68
2006-01-132006-01-13 Ralf Corsepius <ralf.corsepius@rtems.org>Ralf Corsepius2-10/+5
* Makefile.am: Remove doxygen support having accidentially slipped into, though yesterday's patch.
2006-01-13Regenerate.Ralf Corsepius9-0/+18
2006-01-13RegenerateRalf Corsepius5-3/+13
2006-01-12Regenerate.Ralf Corsepius9-0/+24
2006-01-12New.Ralf Corsepius3-0/+21
2006-01-122006-01-12 Ralf Corsepius <ralf.corsepius@rtems.org>Ralf Corsepius1-0/+15
* Makefile.am, ftpd/Makefile.am, httpd/Makefile.am, itron/Makefile.am, libblock/Makefile.am, libcsupport/Makefile.am, libfs/Makefile.am, libmisc/Makefile.am, libnetworking/Makefile.am, librpc/Makefile.am, posix/Makefile.am, pppd/Makefile.am, rtems/Makefile.am, sapi/Makefile.am, score/Makefile.am, score/cpu/arm/Makefile.am, score/cpu/avr/Makefile.am, score/cpu/c4x/Makefile.am, score/cpu/h8300/Makefile.am, score/cpu/i386/Makefile.am, score/cpu/m68k/Makefile.am, score/cpu/mips/Makefile.am, score/cpu/no_cpu/Makefile.am, score/cpu/powerpc/Makefile.am, score/cpu/sh/Makefile.am, score/cpu/sparc/Makefile.am, score/cpu/unix/Makefile.am, telnetd/Makefile.am, zlib/Makefile.am: Remove all-local:.
2006-01-12Remove all-local.Ralf Corsepius29-72/+19
2006-01-12Regenerate.Ralf Corsepius4-4/+4
2006-01-12Regenerate.Ralf Corsepius21-46/+46
2006-01-12CleanupsRalf Corsepius27-106/+12