summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* score misc: Score misc: Clean up Doxygen #9 (GCI 2012)Alex Ivanov2012-11-3029-341/+202
| | | | | | | This patch is a task from GCI 2012 which improves the Doxygen comments in the RTEMS source. https://google-melange.appspot.com/gci/task/view/google/gci2012/7977211
* sparc cpu.h: Correct spacingJoel Sherrill2012-11-301-1/+1
|
* Score misc: Clean up Doxygen #8 (GCI 2012)Mathew Kallada2012-11-2924-95/+156
| | | | | | | This patch is a task from GCI 2012 which improves the Doxygen comments in the RTEMS source. http://www.google-melange.com/gci/task/view/google/gci2012/7970221
* score misc: Score misc: Clean up Doxygen #7 (GCI 2012)Alex Ivanov2012-11-2927-187/+184
| | | | | | | This patch is a task from GCI 2012 which improves the Doxygen comments in the RTEMS source. https://google-melange.appspot.com/gci/task/view/google/gci2012/7986214
* score misc: Score misc: Clean up Doxygen #6 (GCI 2012)Christopher Kerl2012-11-2929-166/+211
| | | | | | | This patch is a task from GCI 2012 which improves the Doxygen comments in the RTEMS source. http://www.google-melange.com/gci/task/view/google/gci2012/7976215
* score misc: Score misc: Clean up Doxygen #5Alex Ivanov2012-11-2930-230/+201
|
* libblock: DocumentationRalf Kirchner2012-11-291-1/+1
|
* Filesystem: DocumentationRalf Kirchner2012-11-291-0/+2
|
* bsps/powerpc: Do not use GCC extern inlineRalf Kirchner2012-11-291-12/+8
|
* score: DocumentationSebastian Huber2012-11-291-12/+7
|
* Score misc: Clean up Doxygen #4 (GCI 2012)Alexandre Devienne2012-11-2829-293/+229
| | | | | | | This patch is a task from GCI 2012 which improves the Doxygen comments in the RTEMS source. http://www.google-melange.com/gci/task/view/google/gci2012/7985215
* score misc: Clean up Doxygen #3 (GCI 2012)Alex Ivanov2012-11-2826-138/+165
| | | | | | | This patch is a task from GCI 2012 which improves the Doxygen comments in the RTEMS source. http://www.google-melange.com/gci/task/view/google/gci2012/7982215
* score misc: Clean up Doxygen #2 (GCI 2012)Christopher Kerl2012-11-2829-174/+201
| | | | | | | This patch is a task from GCI 2012 which improves the Doxygen comments in the RTEMS source. http://www.google-melange.com/gci/task/view/google/gci2012/7986213
* score misc: Clean up Doxygen (GCI 2012)Alex Ivanov2012-11-2828-220/+199
| | | | | | This patch is a task from GCI 2012 which improves the Doxygen comments in the RTEMS source. https://google-melange.appspot.com/gci/task/view/google/gci2012/7978208
* score: Add CPU_Exception_frameSebastian Huber2012-11-2764-68/+705
| | | | | | | | | | | | | | | | | | | | | Add CPU port type CPU_Exception_frame and function _CPU_Exception_frame_print(). The CPU ports of avr, bfin, h8300, lm32, m32c, m32r, m68k, nios2, sh, sparc64, and v850 use an empty default implementation of _CPU_Exception_frame_print(). Add rtems_exception_frame and rtems_exception_frame_print(). Add RTEMS_FATAL_SOURCE_EXCEPTION for CPU exceptions. Use rtems_fatal() with source RTEMS_FATAL_SOURCE_EXCEPTION in CPU ports of i386, powerpc, and sparc for unexpected exceptions. Add third parameter to RTEMS_BSP_CLEANUP_OPTIONS() which controls the BSP_PRINT_EXCEPTION_CONTEXT define used in the default bsp_fatal_extension(). Add test sptests/spfatal26.
* powerpc: Add CPU_Exception_frameSebastian Huber2012-11-274-125/+154
| | | | | The powerpc port uses now a unified CPU_Exception_frame. This resulted in a CPU_Exception_frame layout change for the MPC5XX.
* bsps/powerpc: Delete unused EXC_DAR fieldSebastian Huber2012-11-273-5/+0
| | | | The Data Access Register (DAR) is not saved in the exception prologue.
* bsps/powerpc: Delete unused EXC_MSR fieldSebastian Huber2012-11-273-5/+1
| | | | The MSR of the interrupted context is saved in the EXC_SRR1 field.
* psxtmtests_plan.csv: Identify Conditional Variable CasesJoel Sherrill2012-11-251-10/+10
|
* bsps: Use RTEMS_BSP_CLEANUP_OPTIONSSebastian Huber2012-11-2510-14/+5
|
* Filesystem: PR1619: Use ENOSYS for default statvfsSebastian Huber2012-11-223-5/+5
| | | | | POSIX does not specify an error number in case the file system does not support this call. Use the Linux value.
* score: PR1607: Add and use CPU_SIZEOF_POINTERSebastian Huber2012-11-2221-13/+114
| | | | | | | | | | | | | | | | | Add and use new CPU port define CPU_SIZEOF_POINTER. It must be an integer literal that can be used by the assembler. This value will be used to calculate offsets of structure members. These offsets will be used in assembler code. The size of a pointer is part of the application binary interface (ABI) and thus independent of the actual programming language. The compiler will provide defines to determine the current ABI. We use these defines to select the appropriate CPU_SIZEOF_POINTER value. Static assertions in the new file "cpukit/score/src/percpuasm.c" will ensure that the value of CPU_SIZEOF_POINTER is consistent with the current compiler settings. Also the offset values used by assembler code are verfied.
* score: Inline _API_extensions_Run_postswitch()Sebastian Huber2012-11-223-21/+16
| | | | | The _API_extensions_Run_postswitch() function is only used in _Thread_Dispatch(). Avoid superfluous load of _Thread_Executing.
* score: Inline _User_extensions_Thread_switch()Sebastian Huber2012-11-223-44/+17
| | | | | The _User_extensions_Thread_switch() function is only used in _Thread_Dispatch().
* score: Add and use <rtems/score/userextimpl.h>Sebastian Huber2012-11-2249-243/+257
| | | | | This file contains the parts of <rtems/score/userext.h> that are only necessary for the RTEMS implementation.
* score: Avoid superfluous loadsSebastian Huber2012-11-221-4/+12
|
* score: Change _Internal_error_Occurred()Sebastian Huber2012-11-223-14/+28
| | | | | | | Call the fatal handlers of the user extensions before the update of _Internal_errors_What_happened. This reduces the requirements on the execution context further. Now a valid read-write data is only required after the call to the fatal handlers.
* score: Delete nest level from internal error stateSebastian Huber2012-11-222-9/+0
| | | | This reverts commit 7d0bdcac1ac20d6f22b24689c16e6aa7bc3c1e40.
* ftpfs: Fix NULL pointer accessSebastian Huber2012-11-221-7/+11
|
* m68k/mrm332: Delete _Internal_error_Occurred()Sebastian Huber2012-11-222-53/+12
| | | | Use custom bsp_fatal_extension() instead.
* m68k/mvme167: Delete bsp_fatal_error_occurred()Sebastian Huber2012-11-224-115/+0
|
* fstests/fsfseeko01: Add test casesSebastian Huber2012-11-221-4/+26
|
* ftpfs: Use SIZE commandSebastian Huber2012-11-213-1/+127
|
* ftpfs: Open control connection during path evalSebastian Huber2012-11-211-162/+151
|
* ftpfs: FormatSebastian Huber2012-11-211-29/+30
|
* ftpd: Add SIZE commandSebastian Huber2012-11-211-0/+29
|
* sptests/spcbssched02: PR2081: WorkaroundSebastian Huber2012-11-211-8/+10
| | | | | Avoid uninitialized stack variable. This is not a proper fix. It is not clear what the task should do if argument != 1.
* arm: Add _CPU_Thread_Idle_body for ARMv7-MSebastian Huber2012-11-213-1/+40
|
* score: Add RTEMS_FATAL_SOURCE_POWERPC_EXCEPTIONSebastian Huber2012-11-215-194/+200
| | | | | | | | | Add ppc_exc_print_frame_and_context() which prints an exception frame and the context via printk(). The global exception handler will call now rtems_fatal() with source RTEMS_FATAL_SOURCE_POWERPC_EXCEPTION. The fatal code will contain the pointer value to the exception frame.
* libnetworking: Use rtems_clock_get_uptime_secondsSebastian Huber2012-11-213-17/+6
| | | | | | | | This reduces the start-up time of the network stack. With a 1ms tick the ticks since boot value overflows after approximately 50 days. This problem is avoided with the rtems_clock_get_uptime_seconds() function.
* libnetworking: Use rtems_clock_get_uptime_timevalSebastian Huber2012-11-212-14/+5
|
* rtems: Add rtems_clock_get_uptime_seconds()Sebastian Huber2012-11-216-0/+77
|
* rtems: Add rtems_clock_get_uptime_timeval()Sebastian Huber2012-11-216-0/+74
|
* score: Add and use _TOD_Get_with_nanoseconds()Sebastian Huber2012-11-215-89/+35
| | | | Delete _TOD_Get_as_timestamp().
* score: Add _Timestamp_To_timeval()Sebastian Huber2012-11-214-1/+76
|
* bsp/mpc55xx: Update due to API changesSebastian Huber2012-11-211-12/+12
|
* powerpc: Add more BUCSR register valuesSebastian Huber2012-11-211-0/+8
|
* monitor: TypoSebastian Huber2012-11-211-1/+1
|
* Update from automake-1.12.5.Ralf Corsépius2012-11-215-59/+86
|
* score: Add RTEMS_FATAL_SOURCE_STACK_CHECKERSebastian Huber2012-11-153-6/+13
|