summaryrefslogtreecommitdiffstats
path: root/doc (unfollow)
Commit message (Collapse)AuthorFilesLines
2015-10-27CONFIGURE_IMFS_MEMFILE_BYTES_PER_BLOCK was undocumented and not error checkedJoel Sherrill1-0/+55
closes #2431.
2015-09-04smp: DocumentationSebastian Huber1-1/+1
2015-09-04smp: DocumentationSebastian Huber1-0/+65
Close #2274.
2015-09-04score: Implement priority boostingSebastian Huber3-2/+15
2015-09-04score: Implement SMP-specific priority queueSebastian Huber1-0/+54
2015-09-04smp: DocumentationSebastian Huber1-0/+39
2015-09-04smp: DocumentationSebastian Huber3-15/+16
2015-09-01rbtree: Delete rtems_rbtree_find_control()Sebastian Huber1-1/+0
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 Sherrill1-1/+1
closes #2380.
2015-07-23doc: Add SMP section to CPU Arch SupplementSebastian Huber20-0/+84
2015-07-17Update dateJoel Sherrill15-30/+30
2015-07-17doc: Add thread dispatch details for SMPSebastian Huber1-0/+69
2015-07-17doc: Clarify interrupts disable problems on SMPSebastian Huber1-11/+64
2015-07-17doc: Fix SMP task variables sectionSebastian Huber1-10/+10
2015-07-08doc: Clarify SMP configuration definesSebastian Huber1-2/+3
2015-06-26doc: Fix interrupt level ARM documentationSebastian Huber1-4/+3
2015-06-26doc: Update ARM documentationSebastian Huber1-5/+15
2015-06-22rtems: Add rtems_interrupt_local_disable|enable()Sebastian Huber1-0/+94
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 Sherrill1-13/+13
CONFIGURE_UNLIMITED_ALLOCATION_SIZE closes #2368.
2015-06-09doc: fix typo. closes #2361.Gedare Bloom1-1/+1
2015-05-21doc: Add new documentation section for Epiphany architectureHesham ALMatary3-0/+83
2015-05-21doc: Clarify SPARC floating point ABIAlexander Krutwig1-1/+6
2015-05-20timecounter: Port to RTEMSAlexander Krutwig1-52/+250
New test sptests/timecounter01. Update #2271.
2015-05-19score: Fine grained locking for message queuesSebastian Huber1-1/+4
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 Huber1-17/+0
These global variables are obsolete since 65f71f8472fa904ca48b816301ed0810def47001.
2015-04-17user/libpci.t: Make it build and clean upJoel Sherrill1-16/+19
2015-04-17LIBPCI: corrected documentationDaniel Hellstrom2-31/+31
2015-04-17LIBPCI: added PCI layer to cpukit/libpciDaniel Hellstrom7-2/+477
2015-03-11doc/started: simplify and fixGedare Bloom8-1226/+47
* 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 Bloom1-0/+11
2015-03-10cpukit: deprecate rtems_clock_get(). closes #2294.Gedare Bloom1-0/+2
2015-03-10cpukit: deprecate notepadsGedare Bloom3-6/+48
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 Huber1-0/+108
2015-03-06doc: Update Ada User Guide to match CJoel Sherrill1-0/+2
2015-02-25posix: fix error return code for pthread_mutex_trylockGedare Bloom1-2/+2
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 Withers3-2/+3
Replacing of existing files is not supported. See #2169.
2015-02-14IMFS: Add CONFIGURE_IMFS_DISABLE_READDIRSebastian Huber1-0/+27
2015-02-13IMFS: Rename CONFIGURE_IMFS_DISABLE_FCHMODSebastian Huber1-4/+4
Rename CONFIGURE_IMFS_DISABLE_FCHMOD to CONFIGURE_IMFS_DISABLE_CHMOD.
2015-02-13IMFS: Add CONFIGURE_IMFS_DISABLE_MKNOD_FILESebastian Huber1-0/+26
2015-02-13IMFS: CONFIGURE_USE_MINIIMFS_AS_BASE_FILESYSTEMSebastian Huber1-11/+47
Resurrect CONFIGURE_USE_MINIIMFS_AS_BASE_FILESYSTEM.
2015-02-12IMFS: Add fine grained configurationSebastian Huber1-34/+286
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 Cederman1-0/+14
2015-02-11doc: Describe new default error handler for SparcDaniel Cederman1-4/+12
2015-01-26user/conf.t: Fix typoJoel Sherrill1-1/+1
2015-01-22score: Delete superfluous Heap_Statistics::instanceSebastian Huber1-2/+0
This value depends on the _Heap_Initialize() call sequence and carries no useful information.
2014-12-19doc: add some red-black tree documentationGedare Bloom3-4/+103
closes #2059
2014-12-16doc: Add multilib section to CPU supplementSebastian Huber3-0/+121
Add multilib section for ARM and PowerPC
2014-12-12doc: Clarify rate-monotonic statisticsSebastian Huber1-4/+15
2014-12-12doc: Clarify rtems_task_set_priority()Sebastian Huber1-0/+3
2014-12-05Update bug report URLSebastian Huber2-2/+2