Timeline



08/01/13:

15:46 Changeset in rtems [0756790]4.115 by Sebastian Huber <sebastian.huber@…>
arm: Per-CPU thread dispatch disable Interrupt support for per-CPU thread dispatch disable level.
15:02 Changeset in rtems [26bdc9fc]4.115 by Joel Sherrill <joel.sherrill@…>
bfin/cpu.h: Remove duplicate definition of CPU_SIMPLE_VECTORED_INTERRUPTS
14:45 Changeset in rtems [17864a4]4.115 by Ralf Kirchner <ralf.kirchner@…>
bsp/arm: Avoid warning
14:36 Changeset in rtems [c6c998b]4.115 by Sebastian Huber <sebastian.huber@…>
bsps/powerpc: Per-CPU thread dispatch disable Interrupt support for per-CPU thread dispatch disable level.
13:49 Changeset in rtems [69308895]4.115 by WeiY <wei.a.yang@…>
clean up spatomic testcase
13:20 Changeset in rtems [b4b309c]4.115 by Sebastian Huber <sebastian.huber@…>
smp: Generalize _Thread_Start_multitasking() Add context parameter to _Thread_Start_multitasking() and use this function in rtems_smp_secondary_cpu_initialize(). This avoids duplication of code. Fix missing floating point context initialization in rtems_smp_secondary_cpu_initialize(). Now performed via _Thread_Start_multitasking().
12:55 Changeset in rtems [2bca05f7]4.115 by Sebastian Huber <sebastian.huber@…>
score: Delete SYSTEM_STATE_BEGIN_MULTITASKING Nothing happened between the SYSTEM_STATE_BEGIN_MULTITASKING to SYSTEM_STATE_UP transition.
12:30 Changeset in rtems [ad010285]4.115 by Ralf Kirchner <ralf.kirchner@…>
bsp/altera-cyclone-v: Made hwlib compile clean Made Alteras hwlib compile clean within the RTEMS build system
11:49 Changeset in rtems [09c00ee]4.115 by Sebastian Huber <sebastian.huber@…>
tmtests/tm27: Fixes for RTEMS_DEBUG
09:35 Changeset in rtems [849bb7a3]4.115 by Sebastian Huber <sebastian.huber@…>
bsps/sparc: Revert most SMP related changes As a side-effect the PR2082 is fixed with this and later changes. The commit restores the _ISR_Handler code to the original version in "cpukit/score/sparc/cpu_asm.S" in commit 6d42b4c60a4ac686489b793d5df2047c735c7c94. A list of reverted changes follows. commit c236082873cb4a2fd42af4ca0868106e1dd65422 Author: Sebastian Huber <sebastian.huber@…> Date: Tue Jul 30 15:54:53 2013 +0200 smp: Provide cache optimized Per_CPU_Control Delete _Per_CPU_Information_p. This commit was completely reverted. commit e517714b7cd28807aad4c1afd8c97df72dadb4c1 Author: Jennifer Averett <jennifer.averett@…> Date: Tue Feb 26 12:31:23 2013 -0600 sparc: Remove dead code that was leftover from SMP development. This commit was completely reverted. commit 47a61aa16f81588f8ffb8ea5cfd1ceba3e9a867a Author: Joel Sherrill <joel.sherrill@…> Date: Fri Oct 7 14:35:03 2011 +0000 2011-10-07 Daniel Hellstrom <daniel@…> PR 1933/cpukit * shared/irq_asm.S: From code inspection I have found the following issues (most SMP), and some improvements in irq_asm.S. I would need a long test with interrupts to verify the interrupt handler better, however I can not see that these patches hurt. Please see comment per hunk below, One should go through the file to indent delay-slots correctly, I have fixed some in the patch areas. An extra space is added in front of delay slots to indicate a delay slot. This commit was completely reverted. commit 0bd3f7e5d12fdbfb5bf4aa4a4169c67bfd92c988 Author: Jennifer Averett <Jennifer.Averett@…> Date: Thu Jul 28 17:33:07 2011 +0000 2011-07-28 Jennifer Averett <Jennifer.Averett@…> PR 1801 * shared/irq_asm.S: Modifications to synch the sparc with the smp working tree. This commit was completely reverted. commit 5d69cd33e9a72cf8c1a24fc9eda7f64d61f10fd1 Author: Joel Sherrill <joel.sherrill@…> Date: Wed Mar 16 20:05:30 2011 +0000 2011-03-16 Jennifer Averett <jennifer.averett@…> PR 1729/cpukit * shared/irq_asm.S: New file. The parts modifying the original code of _ISR_Handler were reverted. Only the content move remains.
08:15 Changeset in rtems-tools [347c9b5]4.104.115 by Peng Fan <van.freenix@…>
Add section size for rap details Add elf section size to the section details, because gdb will use the size of a section.
08:11 Changeset in rtems [8d640134]4.115 by Sebastian Huber <sebastian.huber@…>
score: ISR lock API changes
07:17 Changeset in rtems [7045dc4]4.115 by Sebastian Huber <sebastian.huber@…>
smp: Use ISR lock in per-CPU control Rename _Per_CPU_Lock_acquire() to _Per_CPU_ISR_disable_and_acquire(). Rename _Per_CPU_Lock_release() to _Per_CPU_Release_and_ISR_enable(). Add _Per_CPU_Acquire() and _Per_CPU_Release().
06:50 Changeset in rtems-tools [6d89e3c]4.104.115 by Dhananjay Balan <mb.dhananjay@…>
Refactor - The objects are intialized using the objects rather than the ID.

07/31/13:

12:52 Changeset in rtems [dd8815a]4.115 by Sebastian Huber <sebastian.huber@…>
score: Delete _TOD_Activate and _TOD_Deactivate
12:10 Changeset in rtems [965a442]4.115 by Sebastian Huber <sebastian.huber@…>
score: Move nanoseconds since last tick support Move the nanoseconds since last tick support from the Watchdog to the TOD handler. Now the TOD managment is encapsulated in the TOD_Control structure.
11:42 Changeset in rtems [f031df0e]4.115 by Sebastian Huber <sebastian.huber@…>
score: Rename tod.h to todimpl.h
11:30 Changeset in rtems [9bf7467]4.115 by Sebastian Huber <sebastian.huber@…>
score: Use an ISR lock for TOD Two issues are addressed. 1. On single processor configurations the set/get of the now/uptime timestamps is now consistently protected by ISR disable/enable sequences. Previously nested interrupts could observe partially written values since 64-bit writes are not atomic on 32-bit architectures in general. This could lead to non-monotonic uptime timestamps. 2. The TOD now/uptime maintanence is now independent of the giant lock. This is the first step to remove the giant lock in _Thread_Dispatch().
11:19 Changeset in rtems [b915762]4.115 by Sebastian Huber <sebastian.huber@…>
score: Add and use _TOD_Is_set()
10:59 Changeset in rtems [2d915cf]4.115 by Sebastian Huber <sebastian.huber@…>
score: Add and use ISR locks ISR locks are low-level locks to protect critical sections accessed by threads and interrupt service routines. On single processor configurations the ISR locks degrade to simple ISR disable/enable sequences. No additional storage or objects are required. This synchronization primitive is supported on SMP configurations. Here SMP locks are used.
09:56 Changeset in rtems [f20275d]4.115 by Sebastian Huber <sebastian.huber@…>
sptests/sp37: Improved interrupt lock tests
08:53 Changeset in rtems [e31a9c8]4.115 by Sebastian Huber <sebastian.huber@…>
tmtests/tm26: Fixes for RTEMS_DEBUG
07:45 Changeset in rtems [f73cfe99]4.115 by Ralf Kirchner <ralf.kirchner@…>
bsp/altera-cyclone-v: New BSP Implemented so far: - nocache heap for uncached RAM - basic timer - level 1 cache handling for arm cache controller in arm-cache-l1.h - level 2 L2C-310 cache controller - MMU - DWMAC 1000 ethernet controller - basic errata handling - smp startup for second core

07/30/13:

13:54 Changeset in rtems [c236082]4.115 by Sebastian Huber <sebastian.huber@…>
smp: Provide cache optimized Per_CPU_Control Delete _Per_CPU_Information_p.
13:29 Changeset in rtems [9e6df6a]4.115 by Sebastian Huber <sebastian.huber@…>
score/cpu: Fix _CPU_SMP_lock_Acquire() Avoid infinite loops due to compiler optimization.
09:09 Changeset in rtems [b23abb48]4.115 by Sebastian Huber <sebastian.huber@…>
bsps/i386: Include missing header and fix warnings
09:08 Changeset in rtems [f346bcf7]4.115 by Sebastian Huber <sebastian.huber@…>
score/i386: Fix _CPU_Fatal_halt()
08:23 Changeset in rtems [ac72e3b]4.115 by Sebastian Huber <sebastian.huber@…>
score: Format <rtems/score/percpu.h>
07:06 Ticket #2135 (times() and _times() are subject to integer overflows) created by Sebastian Huber
The clock_t type is defined as unsigned long for RTEMS in Newlib. …
07:00 Ticket #1737 (mpc8313erdb doesn't build) closed by Sebastian Huber
fixed: Should be fixed.
03:24 Changeset in rtems-tools [e60a5ee]4.104.115 by Dhananjay Balan <mb.dhananjay@…>
Fix Task and state printer bugs. - Removed ITRON api objects in thread control - fixes #1

07/29/13:

20:49 Developer/OpenProjects edited by C Rempel
/* Testing */ (diff)
20:48 Developer/OpenProjects edited by C Rempel
/* Testing */ (diff)
20:35 Developer/Projects/Open/Fault_injection created by C Rempel
Created page with " [[TOC(...)]] Credit: Boost C++'s Google SoC page for the inspiration for the template entry. Mentors: Joel Sherrill Students: Past, Present, and Potential Stud..."
18:03 Changeset in rtems [45ca51c]4.115 by Shubham Somani <shubhamsomani92@…>
doc/user/conf.t: More clean ups
15:25 Changeset in rtems [1e51fa5]4.115 by Sebastian Huber <sebastian.huber@…>
score: Add and use _Thread_Update_cpu_time_used() Fix _times().
13:06 Changeset in rtems [bfed5d5]4.115 by Sebastian Huber <sebastian.huber@…>
smp: Support ASR path in rtems_task_mode()
13:01 Changeset in rtems [3f317e9]4.115 by Sebastian Huber <sebastian.huber@…>
score: Move _Thread_Dispatch_if_necessary() Rename to _RTEMS_Tasks_Dispatch_if_necessary().
12:44 Changeset in rtems [06288247]4.115 by Sebastian Huber <sebastian.huber@…>
posix: Simplify pthread_kill() Delete _Thread_Signal_notification() since this is a side-effect of _POSIX_signals_Unblock_thread().
11:48 Changeset in rtems [876dcd02]4.115 by Sebastian Huber <sebastian.huber@…>
smptests/smppsxsignal01: New test
10:54 Changeset in rtems-tools [e282b6e]4.104.115 by Dhananjay Balan <mb.dhananjay@…>
Move todo Why else is there issues?
10:46 Changeset in rtems [6c0e43d]4.115 by Sebastian Huber <sebastian.huber@…>
score: Add and use _Thread_Signal_notification()
08:46 Changeset in rtems [d4f13d1]4.115 by Sebastian Huber <sebastian.huber@…>
smptests/smpsignal01: New test
04:56 Changeset in rtems-tools [59c4946]4.104.115 by Dhananjay Balan <mb.dhananjay@…>
New todo
04:55 Changeset in rtems-tools [8e0de06]4.104.115 by Dhananjay Balan <mb.dhananjay@…>
Add classic barrier. - Add support for classic barrier object. - Drop CORE_ from names in supercore

07/28/13:

12:25 Changeset in rtems-tools [c63080d]4.104.115 by Dhananjay Balan <mb.dhananjay@…>
Update Readme. ToDo?.
11:51 Changeset in rtems [f6efd0bf]4.115 by Sebastian Huber <sebastian.huber@…>
score: Move object content to public API
11:49 Changeset in rtems [0a10eb30]4.115 by Sebastian Huber <sebastian.huber@…>
score: Move object MP content to public API
11:48 Changeset in rtems [7c8830c7]4.115 by Sebastian Huber <sebastian.huber@…>
testsuites: Include missing header files
09:15 Changeset in rtems-tools [b9ee5df]4.104.115 by Dhananjay Balan <mb.dhananjay@…>
Add region support. Abstractions for classic/region added.
07:31 Changeset in rtems-tools [c3d06d5]4.104.115 by Dhananjay Balan <mb.dhananjay@…>
Abstraction for HEAP. Heap_Control Abstraction is added. It will need some more grooming though.
07:13 Developer/Simulators/QEMU/CANEmulation edited by Jinyang
(diff)

07/27/13:

13:57 Changeset in rtems [681f1985]4.115 by Chris Johns <chrisj@…>
Return the amount of data written when an error occurs rather than the error. The change lets the mrfs_fsrdwr test pass.
11:16 Developer/Simulators/QEMU/CANEmulation edited by Jinyang
(diff)
08:41 Changeset in rtems-tools [09086b4]4.104.115 by Dhananjay Balan <mb.dhananjay@…>
Support classic/partitions Added support for partition object.

07/26/13:

14:53 Changeset in rtems [2bdcf4fd]4.115 by Vipul Nayyar <nayyar_vipul@…>
Updated legacy code in i386 pc386
14:26 Changeset in rtems [21ff802]4.115 by Sebastian Huber <sebastian.huber@…>
smp: Delete _ISR_Disable_on_this_core(), etc. Delete _ISR_Enable_on_this_core(), _ISR_Flash_on_this_core(), _ISR_SMP_Disable(), _ISR_SMP_Enable(), _ISR_SMP_Flash(). The ISR disable/enable interface has no parameter to pass a specific object. Thus it is only possible to implement a single global lock object with this interface. Using the ISR disable/enable as the giant lock on SMP configurations is not feasible. Potentially blocking resource obtain sequences protected by the thread dispatch disable level are subdivided into smaller ISR disabled critical sections. This works since on single processor configurations there is only one thread of execution that can block. On SMP this is different (image a mutex obtained concurrently by different threads on different processors). The thread dispatch disable level is currently used as the giant lock. There is not need to complicate things with this unused interface.
14:25 Changeset in rtems [e4c9176]4.115 by Sebastian Huber <sebastian.huber@…>
smp: Delete _ISR_SMP_Initialize()
13:46 Changeset in rtems [10b51ae]4.115 by Sebastian Huber <sebastian.huber@…>
score: Critical section change in _Thread_Dispatch If we enter _Thread_Dispatch() then _Thread_Dispatch_disable_level must be zero. Single processor RTEMS assumes that stores of non-zero values to _Thread_Dispatch_disable_level are observed by interrupts as non-zero values. Move the _Thread_Dispatch_set_disable_level( 1 ) out of the first ISR disabled critical section. In case interrupts happen between the _Thread_Dispatch_set_disable_level( 1 ) and _ISR_Disable( level ) then the interrupt will observe a non-zero _Thread_Dispatch_disable_level and will not issue a _Thread_Dispatch() and we can enter the ISR disabled section directly after interrupt processing. This change leads to symmetry between the single processor and SMP configuration.
12:10 Changeset in rtems [fe52e7c0]4.115 by Sebastian Huber <sebastian.huber@…>
smp: Add and use _Per_CPU_Get() Add and use _Per_CPU_Get_by_index() and _Per_CPU_Get_index(). Add _Per_CPU_Send_interrupt(). This avoids direct access of _Per_CPU_Information.
12:04 Changeset in rtems [ff63d2d]4.115 by Sebastian Huber <sebastian.huber@…>
smp: Use Thread_Control.is_executing FIXME: This area needs proper locking.
12:00 Changeset in rtems [ede5a2a]4.115 by Sebastian Huber <sebastian.huber@…>
libtests/malloc04: Fixes for RTEMS_DEBUG 2nd try
09:45 Changeset in rtems-tools [39f48c9]4.104.115 by Peng Fan <van.freenix@…>
Add object file details to RAP format This change added the object file details to the RAP format so aid debugging support. The information can be optionally stripped for production images not needed this information if space is an issue,with '--rap-strip' assigned to rtems-ld.
07:52 Changeset in rtems [fcff6c7]4.115 by Sebastian Huber <sebastian.huber@…>
bsp/nds: Include missing <rtems/framebuffer.h>
07:34 Changeset in rtems [91404de]4.115 by Sebastian Huber <sebastian.huber@…>
libmisc: Provide libutf8proc conditionally
07:18 Changeset in rtems [4e00fe62]4.115 by Sebastian Huber <sebastian.huber@…>
bsps: Include missing <rtems/score/heapimpl.h>

07/25/13:

13:10 Changeset in rtems [88c74ab]4.115 by Sebastian Huber <sebastian.huber@…>
score: Merge tod implementation into one file Delete TOD_MICROSECONDS_PER_SECOND, TOD_MICROSECONDS_TO_TICKS() and TOD_MILLISECONDS_TO_TICKS().
12:24 Changeset in rtems-source-builder [84a3494]4.104.114.95 by Chris Johns <chrisj@…>
Add a README for github to show.
08:47 Changeset in rtems [bfd0d7a]4.115 by Sebastian Huber <sebastian.huber@…>
score: Include missing <rtems/score/thread.h>
08:46 Changeset in rtems [0c3edbf]4.115 by Sebastian Huber <sebastian.huber@…>
Include missing <rtems/score/threaddispatch.h>
08:34 Changeset in rtems [02632e8]4.115 by Pavel Pisa <ppisa@…>
bsp/csb336: mc9328mxl correct AITC access in bsp_interrupt_dispatch. The original version is missing void and result is that (*x >> 16) is optimized to ldh rX,[rY]. But it is not allowed/supported to access bus/address range used by AITC by other than 32 bit wide accesses and 16-bit access results in the data abort exception. The corrected version works on real hardware and is even more readable. Signed-off-by: Pavel Pisa <ppisa@…>
08:34 Changeset in rtems [4eeddef]4.10 by Pavel Pisa <ppisa@…>
bsp/csb336: mc9328mxl correct AITC access in bsp_interrupt_dispatch. The original version is missing void and result is that (*x >> 16) is optimized to ldh rX,[rY]. But it is not allowed/supported to access bus/address range used by AITC by other than 32 bit wide accesses and 16-bit access results in the data abort exception. The corrected version works on real hardware and is even more readable. Signed-off-by: Pavel Pisa <ppisa@…>
08:33 Changeset in rtems [0b9f4721]4.115 by Sebastian Huber <sebastian.huber@…>
score: Move mppkt implementation into mpciimpl.h
08:20 Changeset in rtems [6cec745f]4.115 by Sebastian Huber <sebastian.huber@…>
rtems: Create signal implementation header Move implementation specific parts of signal.h into new header file signalimpl.h. The signal.h contains now only the application visible API.
07:10 Changeset in rtems [7f04cb18]4.115 by Sebastian Huber <sebastian.huber@…>
score: Create mpci implementation header Move implementation specific parts of mpci.h into new header file mpciimpl.h. The mpci.h contains now only the application visible API.
07:09 Changeset in rtems [3cf39238]4.115 by Sebastian Huber <sebastian.huber@…>
rtems: Fix partition includes
07:07 Changeset in rtems [cba15292]4.115 by Sebastian Huber <sebastian.huber@…>
score: Merge objectmp implementation into one file
06:47 Changeset in rtems [9892d67]4.115 by Sebastian Huber <sebastian.huber@…>
rtems: Use proper header guard

07/24/13:

20:30 Changeset in rtems [989604a5]4.115 by Joel Sherrill <joel.sherrill@…>
conf.t: Fix minor typos.
18:59 Changeset in rtems [044f317a]4.115 by Sebastian Huber <sebastian.huber@…>
libtests/malloc04: Fixes for RTEMS_DEBUG
18:10 Changeset in rtems [5711ecf]4.115 by Sahil Patnayakunii <sahilp@…>
readdir_r(): Add restrict keyword per Single UNIX Specification
18:10 Changeset in rtems [cc86fe1]4.115 by Sahil Patnayakunii <sahilp@…>
POSIX Semaphore: Add restrict keyword per Single UNIX Specification
18:09 Changeset in rtems [4343f5b4]4.115 by Sahil Patnayakunii <sahilp@…>
POSIX AIO: Add restrict keyword per Single UNIX Specification
18:08 Changeset in rtems [f74a492c]4.115 by Sahil Patnayakunii <sahilp@…>
POSIX mqueue.h: Add restrict keyword per Single UNIX Specification
18:06 Changeset in rtems [3c495d51]4.115 by Cynthia Rempel <cynt6007@…>
doc/user/conf.t: Fix SMP_MAXIMUM_PROCESSORS and add Go configuration
17:49 Changeset in rtems [1f4321b]4.115 by Vipul Nayyar <nayyar_vipul@…>
Removed legacy data types from arm
15:30 Changeset in rtems [a112364]4.115 by Sebastian Huber <sebastian.huber@…>
score: Create threadq implementation header Move implementation specific parts of tqdata.h, threadq.h and threadq.inl into new header file threadqimpl.h. The threadq.h contains now only the application visible API. Delete tqdata.h.
14:50 Changeset in rtems [8d0bf322]4.115 by Sebastian Huber <sebastian.huber@…>
score: Delete threadq.inl
14:30 Changeset in rtems [62590a7]4.115 by Sebastian Huber <sebastian.huber@…>
score: Merge threadmp implementation into one file
14:19 Changeset in rtems [fe6c170c]4.115 by Sebastian Huber <sebastian.huber@…>
score: Create states implementation header Move implementation specific parts of states.h and states.inl into new header file statesimpl.h. The states.h contains now only the application visible API.
13:49 Changeset in rtems [b3a84034]4.115 by Peter Dufault <dufault@…>
bsp/mpc55xx: Fix prototype
13:28 Changeset in rtems [c9155f7]4.115 by Sebastian Huber <sebastian.huber@…>
score: Include <rtems/score/cpu.h> This file uses CPU_ALIGNMENT.
13:24 Changeset in rtems [4508a5a]4.115 by Sebastian Huber <sebastian.huber@…>
score: Move _Heap_Area_overhead() definition. This function is used in bootcard.h.
13:14 Changeset in rtems [5618c37a]4.115 by Sebastian Huber <sebastian.huber@…>
score: Create thread implementation header Move implementation specific parts of thread.h and thread.inl into new header file threadimpl.h. The thread.h contains now only the application visible API. Remove superfluous header file includes from various files.
11:50 Changeset in rtems [a2e3f33]4.115 by Sebastian Huber <sebastian.huber@…>
score: Create object implementation header Move implementation specific parts of object.h and object.inl into new header file objectimpl.h. The object.h contains now only the application visible API.
11:25 Changeset in rtems [f0bfd7d8]4.115 by Sebastian Huber <sebastian.huber@…>
score: Create prioritybitmap implementation header Move implementation specific parts of prioritybitmap.h and prioritybitmap.inl into new header file prioritybitmapimpl.h. The prioritybitmap.h contains now only the application visible API. Move content of bitfield.h into prioritybitmapimpl.h.
11:12 Changeset in rtems [c6e21ee1]4.115 by Sebastian Huber <sebastian.huber@…>
score: Create scheduler implementation header Move implementation specific parts of scheduler.h and scheduler.inl into new header file schedulerimpl.h. The scheduler.h contains now only the application visible API.
10:03 Changeset in rtems [f068384e]4.115 by Sebastian Huber <sebastian.huber@…>
score: Create schedulerpriority impl header Move implementation specific parts of schedulerpriority.h and schedulerpriority.inl into new header file schedulerpriorityimpl.h. The schedulerpriority.h contains now only the application visible API. Add missing includes. Remove superfluous includes. Move declaration of _Priority_Bit_map to prioritybitmap.inl since this variable is used only here. Remove second declaration of _Priority_Major_bit_map.
09:37 Changeset in rtems [bd5606ab]4.115 by Sebastian Huber <sebastian.huber@…>
score: Create schedulersimple impl header Move implementation specific parts of schedulersimple.h and schedulersimple.inl into new header file schedulersimpleimpl.h. The schedulersimple.h contains now only the application visible API.
09:09 Changeset in rtems [39046f7]4.115 by Sebastian Huber <sebastian.huber@…>
score: Merge sysstate API into one file
08:37 Changeset in rtems [8fb2bea]4.115 by Zhongwei Yao <ashi08104@…>
score: Add freechain
08:26 Changeset in rtems [df8f927]4.115 by Sebastian Huber <sebastian.huber@…>
score: Delete priority.inl
06:57 Changeset in rtems [83015b1]4.115 by Sebastian Huber <sebastian.huber@…>
bsp/lpc32xx: Fix memory map for GPIO registers

07/23/13:

19:48 Changeset in rtems [b7cf09c3]4.115 by Sebastian Huber <sebastian.huber@…>
libtests/malloctest: Fixes for RTEMS_DEBUG
15:17 Changeset in rtems [218286bc]4.115 by Sebastian Huber <sebastian.huber@…>
score: Create stack implementation header Move implementation specific parts of stack.h and stack.inl into new header file stackimpl.h. The stack.h contains now only the application visible API.
15:11 Changeset in rtems [f41eeb0]4.115 by Sebastian Huber <sebastian.huber@…>
posix: Include missing <stdint.h>
14:50 Changeset in rtems [e6f7f81]4.115 by Sebastian Huber <sebastian.huber@…>
score: Create heap implementation header Move implementation specific parts of heap.h and heap.inl into new header file heapimpl.h. The heap.h contains now only the application visible API.
14:47 Changeset in rtems [7121a9fa]4.115 by Sebastian Huber <sebastian.huber@…>
score: Include missing <rtems/score/thread.h>
14:45 Changeset in rtems [965ef82]4.115 by Sebastian Huber <sebastian.huber@…>
score: PR1782: CPU_USE_DEFERRED_FP_SWITCH Do not redefine CPU_USE_DEFERRED_FP_SWITCH.
14:20 Changeset in rtems [560efeb]4.115 by Sebastian Huber <sebastian.huber@…>
score: Include missing <rtems/score/address.h>
13:32 Changeset in rtems [1cb75cc]4.115 by Sebastian Huber <sebastian.huber@…>
score: Merge wkspace API into one file
13:30 Changeset in rtems [f26f5fc1]4.115 by Sebastian Huber <sebastian.huber@…>
score: Merge address API into one file
13:25 Changeset in rtems [8125cb7]4.115 by Sebastian Huber <sebastian.huber@…>
rtems: Include missing header
12:56 Changeset in rtems [c404828]4.115 by Sebastian Huber <sebastian.huber@…>
rtems: Create tasks implementation header Move implementation specific parts of tasks.h and tasks.inl into new header file tasksimpl.h. The tasks.h contains now only the application visible API.
12:38 Changeset in rtems [ef36f7e2]4.115 by Sebastian Huber <sebastian.huber@…>
rtems: Include <rtems/debug.h> in <rtems.h> This header file is included indirectly via <rtems/rtems/region.h>.
12:38 Changeset in rtems [f6c7c57d]4.115 by Sebastian Huber <sebastian.huber@…>
rtems: Create region implementation header Move implementation specific parts of region.h and region.inl into new header file regionimpl.h. The region.h contains now only the application visible API.
12:19 Changeset in rtems [8695cae]4.115 by Sebastian Huber <sebastian.huber@…>
rtems: Create part implementation header Move implementation specific parts of part.h and part.inl into new header file partimpl.h. The part.h contains now only the application visible API.
12:19 Changeset in rtems-source-builder [9c150cf]4.104.114.95 by Chris Johns <chrisj@…>
config: PR 2134 - Return the missing =.
11:51 Changeset in rtems [e90b1df]4.115 by Sebastian Huber <sebastian.huber@…>
rtems: Create timer implementation header Move implementation specific parts of timer.h and timer.inl into new header file timerimpl.h. The timer.h contains now only the application visible API.
11:34 Changeset in rtems [d19c5352]4.115 by Sebastian Huber <sebastian.huber@…>
score: Include <string.h> in basedefs.h
11:32 Changeset in rtems [7660e8b3]4.115 by Sebastian Huber <sebastian.huber@…>
Include missing <string.h>
11:21 Ticket #2134 (possible typo in config file) closed by Chris Johns
fixed: Fixed (Sorry I did not see your patch or I would have used it)
11:13 Changeset in rtems [ecdcf01]4.115 by Sebastian Huber <sebastian.huber@…>
rtems: Create ratemon implementation header Move implementation specific parts of ratemon.h and ratemon.inl into new header file ratemonimpl.h. The ratemon.h contains now only the application visible API.
11:08 Ticket #2134 (possible typo in config file) created by Dmitriy Dyomin
Trying to build toolset 4.10/rtems-sparc.bset, I noticed that rtems …
11:00 Changeset in rtems [562815c]4.115 by Sebastian Huber <sebastian.huber@…>
rtems: Create dpmem implementation header Move implementation specific parts of dpmem.h and dpmem.inl into new header file dpmemimpl.h. The dpmem.h contains now only the application visible API.
10:47 Changeset in rtems [e151eb1]4.115 by Sebastian Huber <sebastian.huber@…>
rtems: Create event implementation header Move implementation specific parts of event.h, event.inl, eventset.h and eventset.inl into new header file eventimpl.h. The event.h contains now only the application visible API.
10:28 Ticket #2133 (<rtems/score/basedefs.h> superfluously includes <string.h>) created by Sebastian Huber
In older RTEMS versions <rtems.h> provided <string.h> indirectly. The …
09:38 Changeset in rtems [9108bef]4.115 by Sebastian Huber <sebastian.huber@…>
rtems: Merge support API into one file
09:33 Changeset in rtems [f4d9ab3e]4.115 by Sebastian Huber <sebastian.huber@…>
rtems: Create asr implementation header Move implementation specific parts of asr.h and asr.inl into new header file asrimpl.h. The asr.h contains now only the application visible API.
09:25 Changeset in rtems [b79953cf]4.115 by Sebastian Huber <sebastian.huber@…>
rtems: Create modes implementation header Move implementation specific parts of modes.h and modes.inl into new header file modesimpl.h. The modes.h contains now only the application visible API.
09:12 Changeset in rtems [63d229d6]4.115 by Sebastian Huber <sebastian.huber@…>
rtems: Create attr implementation header Move implementation specific parts of attr.h and attr.inl into new header file attrimpl.h. The attr.h contains now only the application visible API.
09:03 Changeset in rtems [caab339]4.115 by Sebastian Huber <sebastian.huber@…>
rtems: Create options implementation header Move implementation specific parts of options.h and options.inl into new header file optionsimpl.h. The options.h contains now only the application visible API.
08:54 Changeset in rtems [faa2f8c4]4.115 by Sebastian Huber <sebastian.huber@…>
rtems: Create status implementation header Move implementation specific parts of status.h and status.inl into new header file statusimpl.h. The status.h contains now only the application visible API.
08:38 Changeset in rtems [93fb3cb0]4.115 by Sebastian Huber <sebastian.huber@…>
score: Create rbtree implementation header Move implementation specific parts of rbtree.h and rbtree.inl into new header file rbtreeimpl.h. The rbtree.h contains now only the application visible API.
08:04 Changeset in rtems [ac252bdc]4.115 by Sebastian Huber <sebastian.huber@…>
sapi: Create extension implementation header Move implementation specific parts of extension.h and extension.inl into new header file extensionimpl.h. The extension.h contains now only the application visible API.
07:50 Changeset in rtems [2445bda]4.115 by Sebastian Huber <sebastian.huber@…>
sapi: Merge rbtree API into one file
07:48 Changeset in rtems [98c7eaca]4.115 by Sebastian Huber <sebastian.huber@…>
sapi: Merge timespec API into one file
07:44 Changeset in rtems [b5ffa5e]4.115 by Sebastian Huber <sebastian.huber@…>
sapi: Merge CBS API into one file
07:15 Changeset in rtems [be1b8a7]4.115 by Sebastian Huber <sebastian.huber@…>
posix: Include proper header file

07/22/13:

23:30 Changeset in rtems [1f6138e5]4.115 by Cynthia Rempel <cynt6007@…>
doc/user/conf.t: Fix SMP_MAXIMUM_PROCESSORS and add Go Configuration
23:29 Changeset in rtems [b885fe1]4.115 by Joel Sherrill <joel.sherrill@…>
doc/shell/Makefile.am: Fix dependency
15:56 Changeset in rtems [95519eed]4.115 by Sebastian Huber <sebastian.huber@…>
score: New header file <rtems/score/assert.h>
15:26 Changeset in rtems [f6f4943]4.115 by Sebastian Huber <sebastian.huber@…>
network: SMP support for network semaphore
14:36 Ticket #2132 (<rtems/score/basedefs.h> superfluously includes <limits.h>) created by Sebastian Huber
In older RTEMS versions <rtems.h> provided <limits.h> indirectly. The …
14:27 Changeset in rtems [b1564cc]4.115 by Sebastian Huber <sebastian.huber@…>
sapi: Merge chain implementation into one file
14:01 Changeset in rtems [a1ccc40]4.115 by Sebastian Huber <sebastian.huber@…>
rtems: Basic SMP support for timer server
13:13 Ticket #2131 (SMP support for timer server is suboptimal) created by Sebastian Huber
The SMP support for the timer server should not use the global thread …
13:13 Changeset in rtems [2a3cff8]4.115 by Sebastian Huber <sebastian.huber@…>
score: _CORE_mutex_Check_dispatch_for_seize() Add SMP version of this check, otherwise sptests/spfatal03 fails.
13:03 Changeset in rtems [43f97f1]4.115 by Sebastian Huber <sebastian.huber@…>
posix: Statically init _POSIX_signals_Ualarm_timer
12:01 Ticket #2130 (Race condition in nanosleep()) created by Sebastian Huber
int nanosleep( const struct timespec *rqtp, struct timespec …
11:48 Changeset in rtems [e2005af6]4.115 by Sebastian Huber <sebastian.huber@…>
posix: Statically init _POSIX_signals_Alarm_timer
09:10 Changeset in rtems [0eae7ba9]4.115 by Sebastian Huber <sebastian.huber@…>
score: Add WATCHDOG_INITIALIZER()
08:49 Changeset in rtems [6e93dc4a]4.115 by Sebastian Huber <sebastian.huber@…>
score: Create chain implementation header Move implementation specific parts of chain.h and chain.inl into new header file chainimpl.h. The chain.h contains now only the application visible API.
08:21 Changeset in rtems [4b48ece0]4.115 by Sebastian Huber <sebastian.huber@…>
score: Create watchdog implementation header Move implementation specific parts of watchdog.h and watchdog.inl into new header file watchdogimpl.h. The watchdog.h contains now only the application visible API.
08:01 Changeset in rtems [c2d6447]4.115 by Sebastian Huber <sebastian.huber@…>
posix: Protect ualarm() Use thread dispatch disable/enable to ensure thread level mutual exlusion.
07:18 Changeset in rtems [1a30d442]4.115 by Sebastian Huber <sebastian.huber@…>
libmisc: Use _Thread_Get_executing()
07:16 Changeset in rtems [d7ce33f1]4.115 by Sebastian Huber <sebastian.huber@…>
testsuites: Use _Thread_Get_executing()
07:15 Changeset in rtems [47ac81f]4.115 by Sebastian Huber <sebastian.huber@…>
posix: Obtain _Thread_Executing in proper context
07:11 Changeset in rtems [918d5565]4.115 by Sebastian Huber <sebastian.huber@…>
sptests/sp37: Disable dispatch for clock tick
01:44 Changeset in rtems-tools [76d3b89]4.104.115 by Peng Fan <van.freenix@…>
collect 'STT_NOTYPE' symbols

07/21/13:

21:04 Changeset in rtems [dbce4c6]4.115 by Karel Gardas <karel.gardas@…>
bsp/stm32f4: fix typo in USART2 device name
16:39 Changeset in rtems-tools [f291594]4.104.115 by Peng Fan <van.freenix@…>
fix relocation records order
00:22 Changeset in rtems-source-builder [01b2815]4.104.114.95 by Chris Johns <chrisj@…>
SB: Fix internal build and mailing. Output errors to the log.

07/20/13:

22:55 Changeset in rtems-source-builder [6d32fe7]4.104.114.95 by Chris Johns <chrisj@…>
CONFIG: PR 2127 - Build fails on Linux. Fix shell tests where '==' was used rather than '='.

07/19/13:

15:18 Changeset in rtems [a9cc1beb]4.115 by Sebastian Huber <sebastian.huber@…>
posix: Protect alarm() Use thread dispatch disable/enable to ensure thread level mutual exlusion.
15:18 Changeset in rtems [768c5cee]4.115 by Sebastian Huber <sebastian.huber@…>
posix: Obtain _Thread_Executing in proper context
15:16 Changeset in rtems [d566f33e]4.115 by Sebastian Huber <sebastian.huber@…>
libcsupport: Use _Thread_Get_executing()
14:20 Changeset in rtems [4cb8e597]4.115 by Sebastian Huber <sebastian.huber@…>
score: Obtain _Thread_Executing in proper context
14:13 Ticket #2129 (sync() implementation is dangerous) created by Sebastian Huber
The sync() implementation has some weaknesses. 1. No protection of …
13:32 Changeset in rtems [16243a2]4.115 by Sebastian Huber <sebastian.huber@…>
score: Avoid direct usage of _Thread_Executing Pass the executing thread as a function parameter. Obtain the executing thread inside a thread dispatch critical section to avoid problems on SMP.
13:24 Changeset in rtems [c71b596]4.115 by Sebastian Huber <sebastian.huber@…>
score: Create spinlock implementation header Move implementation specific parts of corespinlock.h and corespinlock.inl into new header file corespinlockimpl.h. The corespinlock.h contains now only the application visible API.
13:18 Changeset in rtems [eb448eec]4.115 by Sebastian Huber <sebastian.huber@…>
posix: Create spinlock implementation header Move implementation specific parts of spinlock.h and spinlock.inl into new header file spinlockimpl.h. The spinlock.h contains now only the application visible API.
13:08 Changeset in rtems [f17c779]4.115 by Sebastian Huber <sebastian.huber@…>
posix: Create timer implementation header Move implementation specific parts of timer.h and timer.inl into new header file timerimpl.h. The timer.h contains now only the application visible API.
13:00 Changeset in rtems [982e9746]4.115 by Sebastian Huber <sebastian.huber@…>
score: Avoid direct usage of _Thread_Executing Pass the executing thread as a function parameter. Obtain the executing thread inside a thread dispatch critical section to avoid problems on SMP.
12:48 Changeset in rtems [cbdabc8]4.115 by Sebastian Huber <sebastian.huber@…>
score: Create rwlock implementation header Move implementation specific parts of corerwlock.h and corerwlock.inl into new header file corerwlockimpl.h. The corerwlock.h contains now only the application visible API.
12:39 Changeset in rtems [0e8656b4]4.115 by Sebastian Huber <sebastian.huber@…>
posix: Create rwlock implementation header Move implementation specific parts of rwlock.h and rwlock.inl into new header file rwlockimpl.h. The rwlock.h contains now only the application visible API.
12:33 Changeset in rtems [0c5317d]4.115 by Sebastian Huber <sebastian.huber@…>
posix: Create pthread implementation header Move implementation specific parts of pthread.h and pthread.inl into new header file pthreadimpl.h. The pthread.h contains now only the application visible API.
12:15 Changeset in rtems [97552c98]4.115 by Sebastian Huber <sebastian.huber@…>
posix: Create priority implementation header Move implementation specific parts of priority.h and priority.inl into new header file priorityimpl.h. Remove priority.h since there is no application visible API.
12:02 Changeset in rtems [d8dd80e]4.115 by Sebastian Huber <sebastian.huber@…>
smptests/smp08: Print missing newline
10:08 Changeset in rtems [35210b12]4.115 by Sebastian Huber <sebastian.huber@…>
posix: Create condition variable impl header Move implementation specific parts of cond.h and cond.inl into new header file condimpl.h. The cond.h contains now only the application visible API.
09:18 Changeset in rtems [a9515722]4.115 by Sebastian Huber <sebastian.huber@…>
cpuuse: Add SMP support
09:18 Changeset in rtems [7d9a426]4.115 by Sebastian Huber <sebastian.huber@…>
libcsupport: Include missing header file
09:07 Changeset in rtems [0444947e]4.115 by Sebastian Huber <sebastian.huber@…>
score: Avoid direct usage of _Thread_Executing Pass the executing thread as a function parameter. Obtain the executing thread inside a thread dispatch critical section to avoid problems on SMP.
09:00 Changeset in rtems [bb2d9f9]4.115 by Sebastian Huber <sebastian.huber@…>
score: Create barrier implementation header Move implementation specific parts of corebarrier.h and corebarrier.inl into new header file corebarrierimpl.h. The corebarrier.h contains now only the application visible API.
08:51 Changeset in rtems [6b4a3770]4.115 by Sebastian Huber <sebastian.huber@…>
posix: Create barrier implementation header Move implementation specific parts of barrier.h and barrier.inl into new header file barrierimpl.h. The barrier.h contains now only the application visible API.
08:42 Changeset in rtems [0b32bb8]4.115 by Sebastian Huber <sebastian.huber@…>
rtems: Create barrier implementation header Move implementation specific parts of barrier.h and barrier.inl into new header file barrierimpl.h. The barrier.h contains now only the application visible API.
08:12 Changeset in rtems [57c88056]4.115 by Sebastian Huber <sebastian.huber@…>
smptests: Be successful on one processor
06:51 Changeset in rtems [e64f164]4.115 by Sebastian Huber <sebastian.huber@…>
score: Include <limits.h> in basedefs.h
00:13 Changeset in rtems-source-builder [7fcbffd]4.104.114.95 by Chris Johns <chrisj@…>
Update using the RTEMS path.

07/18/13:

23:32 Changeset in rtems-tools [f4cf8f4]4.104.115 by Peng Fan <van.freenix@…>
arch specific section support
14:22 Changeset in rtems [5f7757b]4.115 by Sebastian Huber <sebastian.huber@…>
posix: Use _Thread_Get_executing()
14:00 Changeset in rtems [33a4a56]4.115 by Sebastian Huber <sebastian.huber@…>
score: Avoid direct usage of _Thread_Executing Pass the executing thread as a function parameter. Obtain the executing thread inside a thread dispatch critical section to avoid problems on SMP.
13:55 Changeset in rtems [a9127a2e]4.115 by Sebastian Huber <sebastian.huber@…>
testsuites: Include missing header files
13:35 Changeset in rtems [b5d514f]4.115 by Sebastian Huber <sebastian.huber@…>
score: Create message queue implementation header Move implementation specific parts of coremsg.h and coremsg.inl into new header file coremsgimpl.h. The coremsg.h contains now only the application visible API.
13:33 Changeset in rtems [f2d9fda]4.115 by Sebastian Huber <sebastian.huber@…>
shell: Include missing header file
13:33 Changeset in rtems [ca1d84e]4.115 by Sebastian Huber <sebastian.huber@…>
network: Include missing header file
13:12 Changeset in rtems [972a5c5f]4.115 by Sebastian Huber <sebastian.huber@…>
posix: Create message queue implementation header Move implementation specific parts of mqueue.h and mqueue.inl into new header file mqueueimpl.h. The mqueue.h contains now only the application visible API.
13:05 Changeset in rtems [993a888]4.115 by Sebastian Huber <sebastian.huber@…>
rtems: Create message queue implementation header Move implementation specific parts of message.h and message.inl into new header file messageimpl.h. The message.h contains now only the application visible API.
12:30 Changeset in rtems [1e4f08b4]4.115 by Sebastian Huber <sebastian.huber@…>
score: Include missing header files
12:27 Changeset in rtems [e36f2b8]4.115 by Sebastian Huber <sebastian.huber@…>
score: Avoid direct usage of _Thread_Executing Pass the executing thread as a function parameter. Obtain the executing thread inside a thread dispatch critical section to avoid problems on SMP.
12:26 Changeset in rtems [570045ed]4.115 by Sebastian Huber <sebastian.huber@…>
score: Add const qualifier
12:14 Changeset in rtems [c4f58558]4.115 by Sebastian Huber <sebastian.huber@…>
score: Create semaphore implementation header Move implementation specific parts of coresem.h and coresem.inl into new header file coresemimpl.h. The coresem.h contains now only the application visible API.
12:13 Changeset in rtems [a1b47528]4.115 by Sebastian Huber <sebastian.huber@…>
posix: Include missing header files
11:55 Changeset in rtems [c624c0e9]4.115 by Sebastian Huber <sebastian.huber@…>
posix: Convert to inline function
11:50 Changeset in rtems [9c743e8e]4.115 by Sebastian Huber <sebastian.huber@…>
posix: Create semaphore implementation header Move implementation specific parts of semaphore.h and semaphore.inl into new header file semaphoreimpl.h. The semaphore.h contains now only the application visible API.
10:43 Changeset in rtems [02f73d4]4.115 by Sebastian Huber <sebastian.huber@…>
score: Use _Thread_Get_executing()
09:53 Changeset in rtems [05e82bd7]4.115 by Sebastian Huber <sebastian.huber@…>
score: Error for non-preemptible tasks on SMP A common use case for disabled preemption was to ensure mutual exclusion on single-processor configurations. On SMP this does not work. To abandon non-preemptible tasks simplifies the scheduler.
09:39 Changeset in rtems [79d9523]4.115 by Sebastian Huber <sebastian.huber@…>
rtems: Error for task variables on SMP Task variables are not supported on SMP.
09:34 Changeset in rtems [50ccf98]4.115 by Sebastian Huber <sebastian.huber@…>
rtems: Error for task delete on SMP Task deletion is currently not implemented on SMP configurations.
09:27 Changeset in rtems [f913c79]4.115 by Sebastian Huber <sebastian.huber@…>
sapi: Add rtems_configuration_is_smp_enabled() Add a configuration field which indicates if the SMP mode of operation is enabled. This can be used to disable features unsupported on SMP, e.g task variables.
09:04 Changeset in rtems [d0a97f2]4.115 by Sebastian Huber <sebastian.huber@…>
score: Move ISR catch support functions Delete now unused file <rtems/score/isr.inl>.
09:03 Changeset in rtems [3b8d2fa4]4.115 by Sebastian Huber <sebastian.huber@…>
rtems: Use _Thread_Get_executing()
09:03 Changeset in rtems [45b572f]4.115 by Sebastian Huber <sebastian.huber@…>
score: Move ISR level content to single file
08:08 Changeset in rtems [2f589cc]4.115 by Ralf Kirchner <ralf.kirchner@…>
bsp/gen83xx: Fix BSP options for MPC8348EAMDS
07:50 Changeset in rtems [cbfe05c]4.115 by Sebastian Huber <sebastian.huber@…>
score: Update due to API changes
07:42 Changeset in rtems [0dd262d3]4.115 by Sebastian Huber <sebastian.huber@…>
libtests/gxx01: Avoid random memory read/write
07:02 Changeset in rtems [0bbd8fdc]4.115 by Sebastian Huber <sebastian.huber@…>
score: Add and use _ISR_Get_nest_level()
05:06 Projects/POSIX_Methods_in_NewLib_RTEMS_improvements edited by C Rempel
/* Possibilities to extend the project */ (diff)
03:05 Changeset in rtems-tools [c14133e]4.104.115 by Peng Fan <van.freenix@…>
Add support for relocations which reference local symbols Signed-off-by: Peng Fan <van.freenix@…>
02:53 Changeset in rtems-tools [e23ef3b]4.104.115 by Peng Fan <van.freenix@…>
Fixed fsec If one object file contains .rodata and .rodata.str1.4 sections, .rodata contains rela reloc entries, but .rodata.str1.4 do not contain reloc entris.'.rodata' and '.rodata.str1.4' will be both included in '.const'.Then using this patch to fix the rela problem Signed-off-by: Peng Fan <van.freenix@…>
02:49 Changeset in rtems-tools [4b31ced]4.104.115 by Peng Fan <van.freenix@…>
Fixed layout problem Fixed when only one elf object file is passed to rtems-ld.And fixed the error when one object file has rela relocation records, but the other does not contain relocation records. Signed-off-by: Peng Fan <van.freenix@…>
Note: See TracTimeline for information about the timeline view.