summaryrefslogtreecommitdiffstats
path: root/doc/user (unfollow)
Commit message (Collapse)AuthorFilesLines
2013-06-12Make the default values easier for the configuration GUI to parseCynthia Rempel1-91/+94
2013-06-12rtems: Add interrupt locksSebastian Huber1-0/+170
Interrupt locks are low-level lock to protect critical sections accessed by threads and interrupt service routines.
2013-04-10doc: Config documentation changes throughoutSebastian Huber1-200/+166
2013-04-10doc: Add bdbuf configuration optionsSebastian Huber1-0/+376
2013-04-09user/conf.t: Address User Feedback from Stephen TetherJoel Sherrill1-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.
2013-04-09user/overview.t: Fix broken cross referenceJoel Sherrill1-2/+1
2013-04-09doc/user/conf.t: Rewrite to emphasize confdefs.h and add detailJoel Sherrill2-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.
2013-02-26user/preface.texi: Add NEC V850 and SPARC V9Joel Sherrill1-2/+2
2013-02-26user/overview.t: Add missing chapters to overviewJoel Sherrill1-32/+65
2013-02-26doc master include files: Do not include top node on printed outputJoel Sherrill1-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.
2013-02-26doc: Update version.texi and stamp-vti filesJoel Sherrill2-4/+4
See http://www.rtems.org/pipermail/rtems-devel/2013-February/002466.html for instructions on how to do this.
2013-02-26doc/user Object Id Figures: Correct rotation and borderJoel Sherrill4-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.
2013-02-26doc/user/semaphore_attributes.eps: Correct rotationJoel Sherrill1-106459/+3742
2013-02-26doc/c_user: Fix Lines that were too longJoel Sherrill2-9/+9
2013-02-26doc: Update to build info format with texinfo 4.13 and 5.0Joel Sherrill2-40/+40
Texinfo 5.0 is a complete reimplementation and has stricter interpretations of the texinfo language.
2013-02-26Add missing @item.Ralf Corsépius1-1/+1
2013-02-12sapi: PR1911: Add CONFIGURE_DISABLE_BSP_SETTINGSSebastian Huber1-0/+63
2013-01-07sapi: Add rtems_fatal_source_description()Sebastian Huber1-0/+27
2012-12-21score: Add rtems_chain_node_count_unprotected()Sebastian Huber1-0/+28
2012-12-07score: rtems_initialize_start_multitasking()Sebastian Huber1-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.
2012-11-27score: Add CPU_Exception_frameSebastian Huber1-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.
2012-11-22score: Change _Internal_error_Occurred()Sebastian Huber1-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.
2012-11-21rtems: Add rtems_clock_get_uptime_seconds()Sebastian Huber1-0/+31
2012-11-21rtems: Add rtems_clock_get_uptime_timeval()Sebastian Huber1-0/+35
2012-11-15score: Add rtems_fatal()Sebastian Huber1-0/+31
2012-11-15sapi: Add and use rtems_internal_error_descriptionSebastian Huber2-2/+29
2012-11-07doc/user: Fix scheduler configurationSebastian Huber1-1/+1
2012-10-02User's Guide: Correct typos in return status bulletsJoel Sherrill4-15/+15
2012-08-30timespec: Add documentation for struct timespec HelpersJoel Sherrill joel.sherrill@oarcorp.com3-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>
2012-05-11Remove All CVS Id Strings Possible Using a ScriptJoel Sherrill35-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.
2012-05-07Revert: Remove CVS IdsJoel Sherrill1-0/+3
See http://www.rtems.org/pipermail/rtems-devel/2012-May/001006.html for details.
2012-05-04Remove CVS-Ids.Ralf Corsépius1-3/+0
2012-05-03General - Remove extraneous blank line in license messageJoel Sherrill1-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.
2012-04-15PR 1912: Add Scheduler DocumentationPetr Benes1-0/+646
Add new file for CBS documentation.
2012-04-15PR 1912: Add Scheduler DocumentationPetr Benes3-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.
2012-04-11doc: Document new macrosSebastian Huber1-0/+7
2012-03-27confdefs: Add declaration for unlimited objects.Gedare Bloom2-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.
2012-02-01Remove all .cvsignore files.Joel Sherrill1-58/+0
2011-12-072011-12-07 Joel Sherrill <joel.sherrilL@OARcorp.com>Joel Sherrill1-0/+2
PR 1984/doc * user/conf.t: Change CONFIGURE_MINIMUM_STACK_SIZE to CONFIGURE_MINIMUM_TASK_STACK_SIZE.
2011-12-072011-12-07 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill1-1/+1
* user/conf.t: Move @findex for CONFIGURE_MICROSECONDS_PER_TICK to where it should be.
2011-12-062011-12-06 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill6-27/+8
PR 1793/doc * .cvsignore, Makefile.am, README, configure.ac, index.html.in, main.am, project.am, ada_user/.cvsignore, ada_user/ada_user.texi, ada_user/example.texi, bsp_howto/.cvsignore, bsp_howto/bsp_howto.texi, cpu_supplement/.cvsignore, cpu_supplement/cpu_supplement.texi, cpu_supplement/preface.texi, develenv/.cvsignore, develenv/develenv.texi, develenv/intro.texi, filesystem/.cvsignore, filesystem/filesystem.texi, filesystem/preface.texi, networking/.cvsignore, networking/networking.texi, networking/preface.texi, porting/.cvsignore, porting/porting.texi, porting/preface.texi, posix1003.1/.cvsignore, posix1003.1/posix1003_1.texi, posix_users/.cvsignore, posix_users/posix_users.texi, posix_users/preface.texi, shell/.cvsignore, shell/preface.texi, shell/shell.texi, started/.cvsignore, started/started.texi, user/.cvsignore, user/c_user.texi, user/dirstat.texi, user/example.texi, user/glossary.texi, user/preface.texi: Convert from texi2www to texi2html. * texi2html_init.in: New file. * rtems_footer.html.in, rtems_header.html.in: Removed.
2011-12-052011-12-05 Joel Sherrill <joel.sherrilL@OARcorp.com>Joel Sherrill1-2/+2
* ada_user/version.texi, bsp_howto/version.texi, cpu_supplement/version.texi, develenv/version.texi, filesystem/version.texi, networking/version.texi, porting/version.texi, posix1003.1/version.texi, posix_users/version.texi, shell/version.texi, started/version.texi, user/version.texi: Update to match when files in directory where last touched.
2011-11-182011-11-18 Jennifer Averett <Jennifer.Averett@OARcorp.com>Jennifer Averett1-1/+4
* user/conf.t: Added a bsp override option for MAXIMUM_DEVICES.
2011-10-052011-10-05 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill2-190/+294
Petr Benes <benesp16@fel.cvut.cz> PR 1912/doc * user/conf.t, user/schedule.t: Rework to add scheduler specific information.
2011-09-202011-09-19 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill2-28/+27
* user/Makefile.am, user/c_user.texi: Reorder chapters to put scheduling earlier. Also put Barrier and Rate Monotonic Manager where they logically belong. They appear to have just be added toward the end.
2011-07-292011-07-29 Joel Sherrill <joel.sherrilL@OARcorp.com>Joel Sherrill1-0/+23
PR 1864/doc * user/conf.t: Add missing documentation for CONFIGURE_MAXIMUM_POSIX_MESSAGE_QUEUE_DESCRIPTORS, CONFIGURE_MAXIMUM_POSIX_BARRIERS , CONFIGURE_MAXIMUM_POSIX_SPINLOCKS, CONFIGURE_MAXIMUM_POSIX_RWLOCKS.
2011-07-262011-07-26 Joel Sherrill <joel.sherrilL@OARcorp.com>Joel Sherrill1-1/+1
PR 1851/doc * user/conf.t: Fix typo in CONFIGURE_MESSAGE_BUFFER_MEMORY example.
2011-07-182011-07-18 Sebastian Huber <sebastian.huber@embedded-brains.de>Sebastian Huber1-7/+7
* user/mp.t: Avoid obsolete notation.
2011-07-152011-07-15 Sebastian Huber <sebastian.huber@embedded-brains.de>Sebastian Huber2-6/+6
* user/part.t, user/sem.t: Typos.
2011-07-132011-07-13 Joel Sherrill <joel.sherrilL@OARcorp.com>Joel Sherrill1-2/+3
PR 1824/cpukit * bsp_howto/init.t, bsp_howto/support.t, user/init.t: Return exit/shutdown status back to boot_card().