summaryrefslogtreecommitdiff
path: root/doc (follow)
AgeCommit message (Collapse)Author
2015-12-08Add RTEMS linker setsSebastian Huber
Update #2408.
2015-12-07doc: Remove reference to debug maskSebastian Huber
Update #2477.
2015-11-05sapi: Add rtems_chain_get_first_unprotected()Sebastian Huber
Close #2459.
2015-10-27CONFIGURE_IMFS_MEMFILE_BYTES_PER_BLOCK was undocumented and not error checkedJoel Sherrill
closes #2431.
2015-09-04smp: DocumentationSebastian Huber
2015-09-04smp: DocumentationSebastian Huber
Close #2274.
2015-09-04score: Implement priority boostingSebastian Huber
2015-09-04score: Implement SMP-specific priority queueSebastian Huber
2015-09-04smp: DocumentationSebastian Huber
2015-09-04smp: DocumentationSebastian Huber
2015-09-01rbtree: Delete rtems_rbtree_find_control()Sebastian Huber
This function is hard to support in alternative implementations. It has no internal use case.
2015-08-03user/c_user.texi: Correct info index entryJoel Sherrill
closes #2380.
2015-07-23doc: Add SMP section to CPU Arch SupplementSebastian Huber
2015-07-17Update dateJoel Sherrill
2015-07-17doc: Add thread dispatch details for SMPSebastian Huber
2015-07-17doc: Clarify interrupts disable problems on SMPSebastian Huber
2015-07-17doc: Fix SMP task variables sectionSebastian Huber
2015-07-08doc: Clarify SMP configuration definesSebastian Huber
2015-06-26doc: Fix interrupt level ARM documentationSebastian Huber
2015-06-26doc: Update ARM documentationSebastian Huber
2015-06-22rtems: Add rtems_interrupt_local_disable|enable()Sebastian Huber
Add rtems_interrupt_local_disable|enable() as suggested by Pavel Pisa to emphasize that interrupts are only disabled on the current processor. Do not define the rtems_interrupt_disable|enable|flash() macros and functions on SMP configurations since they don't ensure system wide mutual exclusion.
2015-06-15user/conf.t: Fix names for CONFIGURE_UNLIMITED_OBJECTS and ↵Joel Sherrill
CONFIGURE_UNLIMITED_ALLOCATION_SIZE closes #2368.
2015-06-09doc: fix typo. closes #2361.Gedare Bloom
2015-05-21doc: Add new documentation section for Epiphany architectureHesham ALMatary
2015-05-21doc: Clarify SPARC floating point ABIAlexander Krutwig
2015-05-20timecounter: Port to RTEMSAlexander Krutwig
New test sptests/timecounter01. Update #2271.
2015-05-19score: Fine grained locking for message queuesSebastian Huber
Aggregate several critical sections into a bigger one. Sending and receiving messages is now protected by an ISR lock. Thread dispatching is only disabled in case a blocking operation is necessary. The message copy procedure is done inside the critical section (interrupts disabled). Thus this change may have a negative impact on the interrupt latency in case very large messages are transferred. Update #2273.
2015-05-14Remove obsolete rtems_clock_major/minorSebastian Huber
These global variables are obsolete since 65f71f8472fa904ca48b816301ed0810def47001.
2015-04-17user/libpci.t: Make it build and clean upJoel Sherrill
2015-04-17LIBPCI: corrected documentationDaniel Hellstrom
2015-04-17LIBPCI: added PCI layer to cpukit/libpciDaniel Hellstrom
2015-03-11doc/started: simplify and fixGedare Bloom
* fix and remove some macros in rtems.texi.in. * refer to devel mailing list. * remove reference to Debian packaging in requirements section. * remove section on prebuilt tools. * replace toolset build instructions with link to RSB docs. * Add a note in building RTEMS section about using RSB. * Fix URLs Closes #2291.
2015-03-10cpukit: deprecate task variables. closes #2293.Gedare Bloom
2015-03-10cpukit: deprecate rtems_clock_get(). closes #2294.Gedare Bloom
2015-03-10cpukit: deprecate notepadsGedare Bloom
Deprecate Classic API Notepads. Mark task_set/get_note() with the deprecated attribute, and also mark the notepads field. Replace disable with enable option for notepads in confdefs.h, and make notepads disabled by default. The previous option CONFIGURE_DISABLE_CLASSIC_API_NOTEPADS is now unused and will emit a compile-time warning. A new option CONFIGURE_ENABLE_CLASSIC_API_NOTEPADS is available to turn on notepads, but it also will emit a compile-time warning to indicate that notepads are deprecated. Closes #2265
2015-03-06shell: Add PROFREPORT commandSebastian Huber
2015-03-06doc: Update Ada User Guide to match CJoel Sherrill
2015-02-25posix: fix error return code for pthread_mutex_trylockGedare Bloom
pthread_mutex_trylock() should return EBUSY if the mutex is already locked. The translations of CORE_MUTEX_STATUS_NESTING_NOT_ALLOWED is EDEADLK which is correct for pthread_mutex_lock(). This fixes the translation for trylock. Closes #2170.
2015-02-19doc: Note that rename() is only partially implemented.Nick Withers
Replacing of existing files is not supported. See #2169.
2015-02-14IMFS: Add CONFIGURE_IMFS_DISABLE_READDIRSebastian Huber
2015-02-13IMFS: Rename CONFIGURE_IMFS_DISABLE_FCHMODSebastian Huber
Rename CONFIGURE_IMFS_DISABLE_FCHMOD to CONFIGURE_IMFS_DISABLE_CHMOD.
2015-02-13IMFS: Add CONFIGURE_IMFS_DISABLE_MKNOD_FILESebastian Huber
2015-02-13IMFS: CONFIGURE_USE_MINIIMFS_AS_BASE_FILESYSTEMSebastian Huber
Resurrect CONFIGURE_USE_MINIIMFS_AS_BASE_FILESYSTEM.
2015-02-12IMFS: Add fine grained configurationSebastian Huber
Remove miniIMFS. Statically initialize the root IMFS. Add configuration options to disable individual features of the root IMFS, e.g. o CONFIGURE_IMFS_DISABLE_CHOWN, o CONFIGURE_IMFS_DISABLE_FCHMOD, o CONFIGURE_IMFS_DISABLE_LINK, o CONFIGURE_IMFS_DISABLE_MKNOD, o CONFIGURE_IMFS_DISABLE_MOUNT, o CONFIGURE_IMFS_DISABLE_READLINK, o CONFIGURE_IMFS_DISABLE_RENAME, o CONFIGURE_IMFS_DISABLE_RMNOD, o CONFIGURE_IMFS_DISABLE_SYMLINK, o CONFIGURE_IMFS_DISABLE_UNMOUNT, and o CONFIGURE_IMFS_DISABLE_UTIME.
2015-02-11doc: Document network task affinity optionDaniel Cederman
2015-02-11doc: Describe new default error handler for SparcDaniel Cederman
2015-01-26user/conf.t: Fix typoJoel Sherrill
2015-01-22score: Delete superfluous Heap_Statistics::instanceSebastian Huber
This value depends on the _Heap_Initialize() call sequence and carries no useful information.
2014-12-19doc: add some red-black tree documentationGedare Bloom
closes #2059
2014-12-16doc: Add multilib section to CPU supplementSebastian Huber
Add multilib section for ARM and PowerPC