Timeline



06/21/14:

00:10 Ticket #2182 (broken RTEMS CLOCKS_PER_SEC interface, when including only time.h) created by Jeffrey Hill
I had to patch Lua (a very portable code) as follows for RTEMS 4.10. I …

06/20/14:

10:05 Changeset in rtems [bd1431a]4.115 by Sebastian Huber <sebastian.huber@…>
score: Use default get/set affinity operation Add and use SCHEDULER_OPERATION_DEFAULT_GET_SET_AFFINITY.
07:59 Changeset in rtems [2803c8ce]4.115 by Sebastian Huber <sebastian.huber@…>
score: Fix statement with no effect

06/18/14:

13:16 Changeset in rtems [a92989a]4.115 by Sebastian Huber <sebastian.huber@…>
score: Fix thread deletion on SMP Close the thread object in _Thread_Make_zombie() so that all blocking operations that use _Thread_Get() in the corresponding release directive can find a terminating thread and can complete the operation.
10:11 Changeset in rtems [f6b7b7ba]4.115 by Sebastian Huber <sebastian.huber@…>
score: Fix _Thread_Delay_ended() on SMP Suppose we have two tasks A and B and two processors. Task A is about to delete task B. Now task B calls rtems_task_wake_after(1) on the other processor. Task B will block on the Giant lock. Task A progresses with the task B deletion until it has to wait for termination. Now task B obtains the Giant lock, sets its state to STATES_DELAYING, initializes its watchdog timer and waits. Eventually _Thread_Delay_ended() is called, but now _Thread_Get() returned NULL since the thread is already marked as deleted. Thus task B remained forever in the STATES_DELAYING state. Instead of passing the thread identifier use the thread control block directly via the watchdog user argument. This makes _Thread_Delay_ended() also a bit more efficient.
08:54 Changeset in rtems [bd56356b]4.115 by Sebastian Huber <sebastian.huber@…>
smptests/smpwakeafter01: New test

06/17/14:

17:03 Changeset in rtems-schedsim [6f48a61] by Jennifer Averett <jennifer.averett@…>
Add remainder of schedulers and cluster scheduler support.

06/16/14:

22:58 Changeset in rtems-source-builder [62cb647]4.104.114.95 by Chris Johns <chrisj@…>
sb: Trace relative paths for nesting configs.
22:57 Changeset in rtems-source-builder [6c4aeae]4.104.114.95 by Chris Johns <chrisj@…>
sb: Fix pkg-config bug with src tracking.
03:11 Changeset in rtems-tools [f25fed3]4.104.115 by Chris Johns <chrisj@…>
4.11: Add ntp patch. This patch has issues related to the clock adjust interface but it allows the package to build.

06/15/14:

09:57 Changeset in rtems-source-builder [a5e37e6]4.104.114.95 by Chris Johns <chrisj@…>
config: Fix the broken rtems-bsp.cfg.
09:36 Changeset in rtems-source-builder [72aab85]4.104.114.95 by Chris Johns <chrisj@…>
config: NTP build fails with too many jobs. Do not use any jobs to build NTP.
09:34 Changeset in rtems-source-builder [912596d]4.104.114.95 by Chris Johns <chrisj@…>
config: Use the prefix as the tools path if no --with-tools. To use tools not in the installed RTEMS path use --with-tools. If the --with-tools option is not supplied use the --prefix path.
05:40 Changeset in rtems-source-builder [0ffee19]4.104.114.95 by Chris Johns <chrisj@…>
sb: Add support for building RTEMS 3rd party packages. Remove the 'opt' from various macros and shell variables. Add pkgconfig to the checks to make it clear the check is a pkgconfig check. Add NTP support as the first package to be built using the RSB. Split the RTEMS URL's out from the base bset file into a separate file that be included by other files. Add an RTEMS BSP configuration file to help abstract the process of building 3rd party packages. Clean the cross and canadian cross support up so we can cleanly support cross and canadian cross building. Refactor the pkgconfig support and clean up the PC file handling of loading modules. Add support for %{?..} to return false if a macro is %{nil}. Add %{pkgconfig ..} support to allow better control of access RTEMS pkgconfig files.
05:14 Changeset in rtems-source-builder [339f92f]4.104.114.95 by Chris Johns <chrisj@…>
sb: Tighten the canadian cross compile detection. A canadian cross compile needs the build, host and target being different. Clean up the error handling.
05:12 Changeset in rtems-source-builder [120e101]4.104.114.95 by Chris Johns <chrisj@…>
sb: Improve the error handling for setbuilder errors. If an error happens in the setbuilder code report the error. Errors in the build phase are logged in the RSB Error Report.

06/13/14:

14:24 Changeset in rtems-schedsim [ac03e9a] by Jennifer Averett <jennifer.averett@…>
rtems: Add _Thread_Yield support.
14:06 Changeset in rtems [11947299]4.115 by Sebastian Huber <sebastian.huber@…>
smptests: Avoid use of uninitialized data
13:14 Changeset in rtems [9f99232]4.115 by Daniel Hellstrom <daniel@…>
LEON3: fix console close handling On SMP rtems_interrupt_lock_context must be used. Most tests fail with a NULL pointer exception when exiting, except on NGMP where main memory is at 0x00000000.
08:18 Changeset in rtems [a387e944]4.115 by Daniel Hellstrom <daniel@…>
LEON3: use interrupt layer in clock driver Manupilating the interrupt control registers directly instead of going through the interrupt layer can be deceiving.
05:21 Ticket #2181 (Race condition in _Scheduler_Yield()) closed by Sebastian Huber
fixed: http://git.rtems.org/rtems/commit/?id=701dd96f598bd58a41884795ba5bf0b5da337d78

06/12/14:

21:34 RTEMSMailingLists edited by Mayes
(diff)
21:33 RTEMSMailingLists edited by Mayes
/* Other RTEMS Mailing Lists */ (diff)
21:25 RTEMSMailingLists edited by Mayes
/* Other RTEMS Mailing Lists */ (diff)
21:09 RTEMSMailingLists edited by Mayes
(diff)
18:43 RTEMSMailingLists edited by Gedare
Merge some content and add instructions for delivery off option. (diff)
12:50 Changeset in rtems [2ba2743]4.115 by Sebastian Huber <sebastian.huber@…>
score: Delete _Thread_Set_transient()
12:37 Changeset in rtems [701dd96f]4.115 by Sebastian Huber <sebastian.huber@…>
score: PR2181: Add _Thread_Yield() The _Scheduler_Yield() was called by the executing thread with thread dispatching disabled and interrupts enabled. The rtems_task_suspend() is explicitly allowed in ISRs: http://rtems.org/onlinedocs/doc-current/share/rtems/html/c_user/Interrupt-Manager-Directives-Allowed-from-an-ISR.html#Interrupt-Manager-Directives-Allowed-from-an-ISR Unlike the other scheduler operations the locking was performed inside the operation. This lead to the following race condition. Suppose a ISR suspends the executing thread right before the yield scheduler operation. Now the executing thread is not longer in the set of ready threads. The typical scheduler operations did not check the thread state and will now extract the thread again and enqueue it. This corrupted data structures. Add _Thread_Yield() and do the scheduler yield operation with interrupts disabled. This has a negligible effect on the interrupt latency.
11:13 Ticket #2181 (Race condition in _Scheduler_Yield()) created by Sebastian Huber
The _Scheduler_Yield() is called by the executing thread with thread …
09:18 Changeset in rtems [970aa80]4.115 by Sebastian Huber <sebastian.huber@…>
bsp/realview-pbx-a9: Fix SMP startup
07:36 RTEMSMailingLists edited by ChrisJohns
Change mailing list names. (diff)
07:17 Changeset in rtems [4639002]4.115 by Sebastian Huber <sebastian.huber@…>
score: Make functions inline These functions are used only via the function pointers in the generic SMP scheduler implementation. Provide them as static inline so that the compiler can optimize more easily.
07:06 Changeset in rtems [82df6f3]4.115 by Sebastian Huber <sebastian.huber@…>
score: Move NULL pointer check to order function This helps to avoid untestable code for the normal SMP schedulers.
06:49 Changeset in rtems [6500614]4.115 by Sebastian Huber <sebastian.huber@…>
score: Fix warnings
06:48 Changeset in rtems [d9b54da]4.115 by Sebastian Huber <sebastian.huber@…>
score: Format
06:43 Changeset in rtems [6f4993e]4.115 by Sebastian Huber <sebastian.huber@…>
score: Add missing inline

06/11/14:

14:34 Changeset in rtems [4962d24d]4.115 by Sebastian Huber <sebastian.huber@…>
smptests/smpscheduler03: Test all SMP schedulers
13:37 Changeset in rtems [897a0935]4.115 by Sebastian Huber <sebastian.huber@…>
score: Fix scheduler context initializer
12:37 Changeset in rtems [647859e]4.115 by Sebastian Huber <sebastian.huber@…>
samples/pppd: Fix extra drivers initializer
12:31 Changeset in rtems [8568341]4.115 by Sebastian Huber <sebastian.huber@…>
score: Need for help indicator for scheduler ops Return a thread in need for help for the following scheduler operations - unblock, - change priority, and - yield. A thread in need for help is a thread that encounters a scheduler state change from scheduled to ready or a thread that cannot be scheduled in an unblock operation. Such a thread can ask threads which depend on resources owned by this thread for help.
09:03 Changeset in rtems [2d36931]4.115 by Sebastian Huber <sebastian.huber@…>
score: Collect scheduler related fields in TCB Add Thread_Scheduler_control to collect scheduler related fields of the TCB.
06:03 Changeset in rtems-source-builder [cbf576e]4.104.114.95 by Chris Johns <chrisj@…>
bare: Add GSoC QEMU patches for CAN bus support.
06:02 Changeset in rtems-source-builder [578405e]4.104.114.95 by Chris Johns <chrisj@…>
bare: Add a build set for building libtool.

06/10/14:

14:48 Changeset in rtems [cb42c9a]4.115 by Martin Galvan <omgalvan.86@…>
lm3s6965-testsuite.cfg: Add pppd. When trying to compile RTEMS for the Stellaris LM3S6965 board, I had an issue of pppd.exe's .rodata section being too big to fit in the board's memory image (region 'ROM_INT' overflowed).
14:32 Changeset in rtems [647b95d]4.115 by Sebastian Huber <sebastian.huber@…>
score: Use chain nodes for ready queue support This reduces the API to the minimum data structures to maximize the re-usability.
14:13 Changeset in rtems [8f0c7a46]4.115 by Sebastian Huber <sebastian.huber@…>
score: Decouple thread and scheduler nodes on SMP Add a chain node to the scheduler node to decouple the thread and scheduler nodes. It is now possible to enqueue a thread in a thread wait queue and use its scheduler node at the same for other threads, e.g. a resouce owner.
14:11 Changeset in rtems [a80c3b6]4.115 by Sebastian Huber <sebastian.huber@…>
score: _Scheduler_priority_Get_scheduler_info() Delete _Scheduler_priority_Get_scheduler_info().
12:30 Changeset in rtems [e473f3c]4.115 by Sebastian Huber <sebastian.huber@…>
score: Fix MrsP root node update Set the new root after the resource tree update.
09:42 Changeset in rtems [2a2a1695]4.115 by Sebastian Huber <sebastian.huber@…>
smptest/smpfatal03: Update due to API changes
08:56 Changeset in rtems [73bf499]4.115 by Sebastian Huber <sebastian.huber@…>
JFFS2: Add device identifier for the flash device It is used in combination with the inode number to uniquely identify a file system node in the system.

06/09/14:

23:41 Changeset in rtems-tools [c8f4ba6]4.104.115 by Chris Johns <chrisj@…>
rt: Update the documentation.
14:27 Changeset in rtems [19260fb]4.115 by Martin Boretto <martin.boretto@…>
bsp/lpc176x: New BSP

06/07/14:

14:31 GSoC/2013/Testing edited by Marcinbujar
(diff)
14:30 GSoC/2013/Testing edited by Marcinbujar
(diff)
14:30 GSoC/2013/Testing edited by Marcinbujar
(diff)
14:26 Developer/Projects/Open/TestingImprovements edited by Marcinbujar
(diff)
14:25 GSoC/2013/Testing edited by Marcinbujar
(diff)
Note: See TracTimeline for information about the timeline view.