summaryrefslogtreecommitdiffstats
path: root/doc/user (follow)
Commit message (Collapse)AuthorAgeFilesLines
* score: Change debug helper functionsSebastian Huber2014-02-124-19/+20
| | | | | | | | Rename rtems_internal_error_description() to rtems_internal_error_text(). Rename rtems_fatal_source_description() to rtems_fatal_source_text(). Rename rtems_status_code_description() to rtems_status_text(). Remove previous implementation of rtems_status_text().
* rtems: Add rtems_status_code_description()Sebastian Huber2014-02-063-5/+37
|
* cpukit/rtems: Add rtems_clock_get_uptime_nanoseconds to the RTEMS API.Chris Johns2013-12-241-16/+46
| | | | | | Add Timestamp support in the score to return a timestamp in nanoseconds. Add a test. Update the RTEMS API documentation.
* doc: Document format in conf.tShubham Somani2013-10-151-0/+56
|
* smp: Add Deterministic Priority SMP SchedulerSebastian Huber2013-08-201-3/+37
|
* documentation: Directives allowed from an ISRSebastian Huber2013-08-141-12/+36
| | | | Update list.
* doc/user/conf.t: More clean upsShubham Somani2013-07-291-100/+7
|
* conf.t: Fix minor typos.Joel Sherrill2013-07-241-2/+2
|
* doc/user/conf.t: Fix SMP_MAXIMUM_PROCESSORS and add Go configurationCynthia Rempel2013-07-241-1/+93
|
* doc/user/conf.t: Fix SMP_MAXIMUM_PROCESSORS and add Go ConfigurationCynthia Rempel2013-07-221-4/+97
|
* Make the default values easier for the configuration GUI to parseCynthia Rempel2013-06-121-91/+94
|
* rtems: Add interrupt locksSebastian Huber2013-06-121-0/+170
| | | | | Interrupt locks are low-level lock to protect critical sections accessed by threads and interrupt service routines.
* doc: Config documentation changes throughoutSebastian Huber2013-04-101-200/+166
|
* doc: Add bdbuf configuration optionsSebastian Huber2013-04-101-0/+376
|
* user/conf.t: Address User Feedback from Stephen TetherJoel Sherrill2013-04-091-68/+78
| | | | | | | | Stephen Tether <tether@slac.stanford.edu> posted to the users list: http://www.rtems.org/pipermail/rtems-users/2013-April/011273.html I tried to make the requested changes.
* user/overview.t: Fix broken cross referenceJoel Sherrill2013-04-091-2/+1
|
* doc/user/conf.t: Rewrite to emphasize confdefs.h and add detailJoel Sherrill2013-04-092-1874/+3782
| | | | | | | This patch includes a heavy rewrite of the chapter to have a more structured approach to this chapter. It also changes the sectioning to have the Data Structures be a section to themselves as a peer in the outline with each logical area of macros in confdefs.h.
* user/preface.texi: Add NEC V850 and SPARC V9Joel Sherrill2013-02-261-2/+2
|
* user/overview.t: Add missing chapters to overviewJoel Sherrill2013-02-261-32/+65
|
* doc master include files: Do not include top node on printed outputJoel Sherrill2013-02-261-0/+3
| | | | | | In PDF, DVI, and PostScript files, the contents of the @top node were being printed. These are intended only for info and html output formats.
* doc: Update version.texi and stamp-vti filesJoel Sherrill2013-02-262-4/+4
| | | | | See http://www.rtems.org/pipermail/rtems-devel/2013-February/002466.html for instructions on how to do this.
* doc/user Object Id Figures: Correct rotation and borderJoel Sherrill2013-02-264-42536/+8462
| | | | | | | | | The 16 bit Object Id image was incorrectly rotated in the manual. Both the 16 and 32 Object Id bit images had thin borders on the table and the bottom line was not visible in the PDF. I tinkered with the original drawings to add a bit more space around the tables and manually converted the PNG to EPS using Gimp to ensure a controlled and high quality conversion.
* doc/user/semaphore_attributes.eps: Correct rotationJoel Sherrill2013-02-261-106459/+3742
|
* doc/c_user: Fix Lines that were too longJoel Sherrill2013-02-262-9/+9
|
* doc: Update to build info format with texinfo 4.13 and 5.0Joel Sherrill2013-02-262-40/+40
| | | | | Texinfo 5.0 is a complete reimplementation and has stricter interpretations of the texinfo language.
* Add missing @item.Ralf Corsépius2013-02-261-1/+1
|
* sapi: PR1911: Add CONFIGURE_DISABLE_BSP_SETTINGSSebastian Huber2013-02-121-0/+63
|
* sapi: Add rtems_fatal_source_description()Sebastian Huber2013-01-071-0/+27
|
* score: Add rtems_chain_node_count_unprotected()Sebastian Huber2012-12-211-0/+28
|
* score: rtems_initialize_start_multitasking()Sebastian Huber2012-12-071-10/+12
| | | | | | | | | Do not return from rtems_initialize_start_multitasking() and call rtems_fatal() instead with a fatal source of RTEMS_FATAL_SOURCE_EXIT and a fatal code with the exit status. Remove all bsp_cleanup() functions. The boot_card() is now a no return function.
* score: Add CPU_Exception_frameSebastian Huber2012-11-271-0/+27
| | | | | | | | | | | | | | | | | | | | | 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.
* score: Change _Internal_error_Occurred()Sebastian Huber2012-11-221-4/+4
| | | | | | | 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.
* rtems: Add rtems_clock_get_uptime_seconds()Sebastian Huber2012-11-211-0/+31
|
* rtems: Add rtems_clock_get_uptime_timeval()Sebastian Huber2012-11-211-0/+35
|
* score: Add rtems_fatal()Sebastian Huber2012-11-151-0/+31
|
* sapi: Add and use rtems_internal_error_descriptionSebastian Huber2012-11-152-2/+29
|
* doc/user: Fix scheduler configurationSebastian Huber2012-11-071-1/+1
|
* User's Guide: Correct typos in return status bulletsJoel Sherrill2012-10-024-15/+15
|
* timespec: Add documentation for struct timespec HelpersJoel Sherrill joel.sherrill@oarcorp.com2012-08-303-2/+563
| | | | | | | | Joel editted the documentation for clarity, grammar and technical correctness. I also moved it in the manual and added @findex entries. The core work was just polished. Author: Krzysztof Mięsowicz <krzysztof.miesowicz@gmail.com>
* Remove All CVS Id Strings Possible Using a ScriptJoel Sherrill2012-05-1135-105/+0
| | | | | | | | | | | | Script does what is expected and tries to do it as smartly as possible. + remove occurrences of two blank comment lines next to each other after Id string line removed. + remove entire comment blocks which only exited to contain CVS Ids + If the processing left a blank line at the top of a file, it was removed.
* Revert: Remove CVS IdsJoel Sherrill2012-05-071-0/+3
| | | | | See http://www.rtems.org/pipermail/rtems-devel/2012-May/001006.html for details.
* Remove CVS-Ids.Ralf Corsépius2012-05-041-3/+0
|
* General - Remove extraneous blank line in license messageJoel Sherrill2012-05-031-0/+0
| | | | | | | | | | | | | Many files had an extra blank line in the license text found in the file header. This patch removes that line. * The license and distribution terms for this file may be * found in the file LICENSE in this distribution or at * * http://www.rtems.com/license/LICENSE. The script that did this also turned off execute permission when it was turned on incorrectly.
* PR 1912: Add Scheduler DocumentationPetr Benes2012-04-151-0/+646
| | | | Add new file for CBS documentation.
* PR 1912: Add Scheduler DocumentationPetr Benes2012-04-153-3/+10
| | | | | | Adds documentation on the scheduler options and scheduler selection to the User's Manual to reflect changes made in the development of pluggable scheduling with EDF and CBS schedulers.
* doc: Document new macrosSebastian Huber2012-04-111-0/+7
|
* confdefs: Add declaration for unlimited objects.Gedare Bloom2012-03-272-20/+75
| | | | | | | | | Adds to confdefs a way to specify rtems_resource_unlimited for classic and posix objects using a new macro CONFIGURE_OBJECTS_UNLIMITED. Use CONFIGURE_OBJECTS_ALLOCATION_SIZE to declare the allocation size for extending the set of objects at runtime. Updates the unlimited sample to demonstrate how to use the new macros. Also adds new documentation in the C User's Manual regarding configuring with unlimited objects.
* Remove all .cvsignore files.Joel Sherrill2012-02-011-58/+0
|
* 2011-12-07 Joel Sherrill <joel.sherrilL@OARcorp.com>Joel Sherrill2011-12-071-0/+2
| | | | | | PR 1984/doc * user/conf.t: Change CONFIGURE_MINIMUM_STACK_SIZE to CONFIGURE_MINIMUM_TASK_STACK_SIZE.
* 2011-12-07 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill2011-12-071-1/+1
| | | | | * user/conf.t: Move @findex for CONFIGURE_MICROSECONDS_PER_TICK to where it should be.