summaryrefslogtreecommitdiffstats
path: root/cpukit (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Whitespace removal.Ralf Corsepius2009-12-0412-97/+97
|
* 2009-12-02 Glenn Humphrey <glenn.humphrey@OARcorp.com>Glenn Humphrey2009-12-0211-10/+19
| | | | | | | | | * libcsupport/src/__times.c, libmisc/cpuuse/cpuusagedata.c, libmisc/cpuuse/cpuusagereport.c, libmisc/cpuuse/cpuusagereset.c, rtems/include/rtems/rtems/types.h, rtems/src/ratemongetstatistics.c, rtems/src/ratemonreportstatistics.c, score/src/threaddispatch.c, score/src/threadinitialize.c, score/src/threadtickletimeslice.c: Updated copyright line.
* 2009-12-02 Glenn Humphrey <glenn.humphrey@OARcorp.com>Glenn Humphrey2009-12-0216-145/+99
| | | | | | | | | | | | | * configure.ac, libcsupport/src/__times.c, libmisc/cpuuse/cpuusagedata.c, libmisc/cpuuse/cpuusagereport.c, libmisc/cpuuse/cpuusagereset.c, rtems/include/rtems/rtems/ratemon.h, rtems/include/rtems/rtems/types.h, rtems/src/ratemongetstatistics.c, rtems/src/ratemongetstatus.c, rtems/src/ratemonperiod.c, rtems/src/ratemonreportstatistics.c, score/include/rtems/score/thread.h, score/src/threaddispatch.c, score/src/threadinitialize.c, score/src/threadtickletimeslice.c: Changed the configuration of statistics granularity to use just one define.
* 2009-12-02 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2009-12-022-1/+5
| | | | * shttpd/def.h: Use __m32c__ for m32c.
* Whitespace removal.Ralf Corsepius2009-12-029-22/+22
|
* 2009-12-02 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2009-12-022-0/+25
| | | | | * shttpd/def.h: Shrink default URI_MAX to 32767. Add special cases for sizeof(size_t) < 2.
* 2009-12-02 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2009-12-022-0/+8
| | | | * rtems/score/avr.h: Add avr6.
* Whitespace removal.Ralf Corsepius2009-12-0220-190/+190
|
* 2009-12-01 Till Straumann <strauman@slac.stanford.edu>Till Straumann2009-12-022-0/+62
| | | | | | | * score/cpu/powerpc/rtems/score/cpu.h: Added space for non- volatile AltiVec registers to context struct. Added declaration for AltiVec-related routines to be implemented by CPU/BSP support.
* 2009-12-01 Joel Sherrill <joel.sherrill@OARcorp.com>Joel Sherrill2009-12-013-0/+33
| | | | | * libmisc/stringto/stringto.h, libmisc/stringto/stringto_template.h: Tidy up as part of adding new test.
* 2009-12-01 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill2009-12-014-34/+59
| | | | | | | | * libcsupport/Makefile.am: Split no_posix.c so using sleep() does not pull in kill() stubs. * libcsupport/src/kill_noposix.c, libcsupport/src/sleep_noposix.c: New files. * libcsupport/src/no_posix.c: Removed.
* Fixed usage of va_arg().Thomas Doerfler2009-12-012-1/+6
|
* 2009-11-30 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill2009-11-302-10/+19
| | | | | * libmisc/shell/login_prompt.c: Fix problem where timeout on login prompt at console results in tight loop repeating login prompt.
* 2009-11-30 Sebastian Huber <sebastian.huber@embedded-brains.de>Joel Sherrill2009-11-302-1/+11
| | | | | * score/src/threaddelayended.c: Clear only the states that are used to block until someone calls _Thread_Delay_ended().
* Whitespace removal.Ralf Corsepius2009-11-30187-802/+802
|
* Whitespace removal.Ralf Corsepius2009-11-3044-92/+92
|
* Spaces to tabs.Joel Sherrill2009-11-301-6/+6
|
* Added format string to fprintf().Thomas Doerfler2009-11-302-3/+7
|
* Obtain output semaphore before drain output during close to prevent an ↵Thomas Doerfler2009-11-302-0/+9
| | | | infinite output drain loop
* Added defines for initialization of empty chains.Thomas Doerfler2009-11-303-0/+32
|
* Changed base implementation of protected heap allocations to use ↵Thomas Doerfler2009-11-307-68/+74
| | | | _Heap_Allocate_aligned_with_boundary().
* Fixed output of unsigned integers.Thomas Doerfler2009-11-302-36/+45
| | | | | Changed type of boolean variables to bool. Use unsigned integer type for radix and width parameters.
* documentation fixesThomas Doerfler2009-11-305-22/+63
| | | | | | Avoid designated initializers for C++ compatibility Fixed invalid state transition from FRESH to CACHED Free memory in case of an error.
* Added timer server control blockThomas Doerfler2009-11-307-309/+472
| | | | | | Removed _Timer_Server thread pointer Added _Timer_server pointer to the default timer server control block Rework of the timer server implementation.
* Whitespace removal.Ralf Corsepius2009-11-2968-229/+229
|
* Whitespace removal.Ralf Corsepius2009-11-2931-256/+256
|
* Whitespace removal.Ralf Corsepius2009-11-2960-934/+934
|
* Whitespace removal.Ralf Corsepius2009-11-2955-347/+347
|
* Whitespace removal.Ralf Corsepius2009-11-2944-136/+136
|
* Whitespace removal.Ralf Corsepius2009-11-288-13/+13
|
* Whitespace removal.Ralf Corsepius2009-11-2834-125/+125
|
* 2009-11-23 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill2009-11-232-6/+17
| | | | | | | * libmisc/shell/shell.c: Always duplicate the environment passed to us because we will delete it when the shell exits. If we do not duplicate it, we could end up freeing memory which was not allocated from the heap or double freeing it.
* 2009-11-23 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill2009-11-232-17/+13
| | | | | * libmisc/shell/login_prompt.c: Properly process EOF and do not depend on ungetc() to propagate the status back.
* 2009-11-23 Joel Sherrill <joel.sherrill@OARcorp.com>Joel Sherrill2009-11-232-6/+5
| | | | | * score/inline/rtems/score/thread.inl: Eliminate unused variable and code.
* 2009-11-23 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill2009-11-2312-24/+56
| | | | | | | | | | | | | | | PR 1460/cpukit * rtems/include/rtems/rtems/object.h, rtems/src/rtemsobjectapimaximumclass.c, rtems/src/rtemsobjectgetapiclassname.c, rtems/src/rtemsobjectgetapiname.c, rtems/src/rtemsobjectgetclassinfo.c, rtems/src/rtemsobjectidapimaximum.c, rtems/src/rtemsobjectidapiminimum.c, rtems/src/rtemsobjectidgetapi.c, rtems/src/rtemsobjectidgetclass.c, rtems/src/rtemsobjectidgetindex.c, rtems/src/rtemsobjectidgetnode.c: Change return type on methods accessing portions of RTEMS Ids to int. This allows -1 to be return on error.
* 2009-11-23 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill2009-11-232-0/+11
| | | | | * mghttpd/mongoose.c: crypto_sw table is not used when SSL is disabled. RTEMS does not have flockfile/funlockfile.
* 2009-11-22 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2009-11-222-0/+5
| | | | * Makefile.am: Add mghttpd.
* numerous changesThomas Doerfler2009-11-204-855/+818
|
* 2009-11-19 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2009-11-192-3/+5
| | | | | * aclocal/check-networking.m4: Do NOT disable networking for the avr and the m32c.
* 2009-11-19 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2009-11-192-13/+12
| | | | | * libmisc/shell/hexdump-odsyntax.c: Remove special casing the h8300, avr, sh2e.
* 2009-11-19 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2009-11-192-1/+6
| | | | | * libcsupport/src/malloc_boundary.c: Avoid implicit type cast (https://www.rtems.org/bugzilla/show_bug.cgi?id=1472#c1).
* 2009-11-18 Chris Johns <chrisj@rtems.org>Chris Johns2009-11-186-1/+195
| | | | | | | | * libmisc/shell/main_getenv.c, libmisc/shell/main_setenv.c, libmisc/shell/main_unsetenv.c: New. The shell can now play with environment variables. * libmisc/Makefile.am, libmisc/shell/shellconfig.h: Add setenv, getenv, and unsetenv to the shell.
* 2009-11-17 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2009-11-172-0/+2
| | | | * configure.ac: Add mghttpd/Makefile.
* 2009-11-17 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2009-11-171-0/+7
| | | | | | | * mghttpd/mongoose.c: Various 16bit fixes. Add HAVE_CONFIG_H. Add HAVE_SYS_MMAN_H HAVE_DLFCN_H. Convert to unix encoding.
* Various 16bit fixes.Ralf Corsepius2009-11-171-7/+7
|
* Add HAVE_CONFIG_H.Ralf Corsepius2009-11-171-0/+4
|
* Add HAVE_SYS_MMAN_H HAVE_DLFCN_H.Ralf Corsepius2009-11-171-0/+4
|
* Convert to unix encoding.Ralf Corsepius2009-11-172-4978/+4978
|
* New.Ralf Corsepius2009-11-173-0/+56
|
* 2009-11-17 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2009-11-171-0/+1
| | | | * mghttpd/Makefile.am: New.