Timeline



04/23/15:

23:25 Ticket #2334 (Actions in Makefile.maint need to be converted/updated to reflect git) created by Joel Sherrill
The file rtems/Makefile.maint has the scripting in it for what needs …
19:29 Changeset in rtems [56729d8]4.115 by Sebastian Huber <sebastian.huber@…>
score: Delete STATES_WAITING_ON_THREAD_QUEUE Avoid the usage of the current thread state in _Thread_queue_Extract_with_return_code() since thread queues should not know anything about thread states.
13:42 Changeset in rtems-libbsd [c2f2392]4.1155-freebsd-126-freebsd-12freebsd-9.3 by Sebastian Huber <sebastian.huber@…>
SLEEPQUEUE(9): Avoid Giant lock
13:25 Changeset in rtems [f329353]4.115 by Sebastian Huber <sebastian.huber@…>
score: Fix POSIX thread join A thread join is twofold. There is one thread that exists and an arbitrary number of threads that wait for the thread exit (one-to-many relation). The exiting thread may want to wait for a thread that wants to join its exit (STATES_WAITING_FOR_JOIN_AT_EXIT in _POSIX_Thread_Exit()). On the other side we need a thread queue for all the threads that wait for the exit of one particular thread (STATES_WAITING_FOR_JOIN in pthread_join()). Update #2035.
12:56 Changeset in rtems-libbsd [67f8497]4.1155-freebsd-126-freebsd-12freebsd-9.3 by Sebastian Huber <sebastian.huber@…>
SLEEPQUEUE(9): Update due to API changes
12:55 Changeset in rtems-libbsd [c0b0b3e]4.1155-freebsd-126-freebsd-12freebsd-9.3 by Sebastian Huber <sebastian.huber@…>
rtems-bsd-mutex: Update due to API changes
11:09 Changeset in rtems [9cac9c5]4.115 by Sebastian Huber <sebastian.huber@…>
score: Delete _Thread_queue_Dequeue_priority()
11:01 Changeset in rtems [22788bc]4.115 by Sebastian Huber <sebastian.huber@…>
score: _Thread_queue_Extract() Remove thread queue parameter from _Thread_queue_Extract() since the current thread queue is stored in the thread control block.
08:27 Changeset in rtems [be6c461]4.115 by Sebastian Huber <sebastian.huber@…>
score: _CORE_mutex_Seize_interrupt_blocking() Move some code into _CORE_mutex_Seize_interrupt_blocking() so that the thread queue handling is in one place.
08:01 Changeset in rtems [02c4c441]4.115 by Sebastian Huber <sebastian.huber@…>
score: Add Thread_queue_Control::Lock Move the complete thread queue enqueue procedure into _Thread_queue_Enqueue_critical(). It is possible to use the thread queue lock to protect state of the object embedding the thread queue. This enables per object fine grained locking in the future. Delete _Thread_queue_Enter_critical_section(). Update #2273.
07:06 Ticket #2328 (_CORE_message_queue_Insert_message() not ISR proof) closed by Sebastian Huber
fixed: [d349e8a439d022bda3f9637fff013cfc8e55743d/rtems]
04:49 Ticket #2333 (CPU use top uses stdin) created by Chris Johns
The CPU use top function takes an output routine yet it blocks on the …

04/22/15:

19:29 Changeset in rtems [9f10911]4.115 by Sebastian Huber <sebastian.huber@…>
score: Delete Thread_queue_Control::state Use a parameter for _Thread_queue_Enqueue() instead to reduce memory usage.
14:10 Changeset in rtems [694f155]4.115 by Joel Sherrill <joel.sherrill@…>
sp13/system.h: Account for all message buffers There may be a way to reduce the memory requirements but it will require time to ensure the math is right and it passes on all targets. At the current time, it fails on 22 BSPs which run on simulators.
11:57 Changeset in rtems [b0686b4]4.115 by Sebastian Huber <sebastian.huber@…>
score: Delete _CORE_RWLock_Timeout() This function was identical to _Thread_queue_Timeout(). This makes _Thread_queue_Enqueue_with_handler() obsolete.
09:35 Changeset in rtems [49d4364]4.115 by Sebastian Huber <sebastian.huber@…>
score: Delete bogus THREAD_QUEUE_WAIT_FOREVER It makes no sense to use this indirection since the type for timeout values is Watchdog_Interval.
09:15 Changeset in rtems [383cf42]4.115 by Sebastian Huber <sebastian.huber@…>
score: More thread queue operations Move thread queue discipline specific operations into Thread_queue_Operations. Use a separate node in the thread control block for the thread queue to make it independent of the scheduler data structures. Update #2273.
08:06 Changeset in rtems [08fe84b]4.115 by Sebastian Huber <sebastian.huber@…>
score: Generalize _Event_Timeout() Add a thread wait timeout code. Replace _Event_Timeout() with a general purpose _Thread_Timeout() watchdog handler. Update #2273.
07:22 Changeset in rtems [36413201]4.115 by Daniel Cederman <cederman@…>
smptests/smpcache01: Enable interrupts before waiting for other CPUs Otherwise there is a risk that a CPU misses a cache manager message from another CPU and the test hangs.

04/21/15:

18:36 Ticket #2332 (rtemstools cannot be built by RSB under MinGW32) created by Daniel Krüger
I want to built the Toolchain for RTEMS on Windows 7 SP1 (32 bit with …
08:17 Changeset in rtems [568af83]4.115 by Sebastian Huber <sebastian.huber@…>
score: Add Thread_queue_Operations Replace the Thread_Priority_control with more general Thread_queue_Operations which will be used for generic priority change, timeout, signal and wait queue operations in the future. Update #2273.
07:21 Changeset in rtems [d349e8a4]4.115 by Sebastian Huber <sebastian.huber@…>
score: Fix priority message queue insert Move the linear search into a critical section to avoid corruption due to higher priority interrupts. The interrupt disable time depends now on the count of pending messages. Close #2328.

04/20/15:

15:55 Ticket #2331 (c/src/lib/libbsp/sparc/shared/1553/gr1553b.c: 2 * memory leak ?) created by David Binderman
1. [rtems/c/src/lib/libbsp/sparc/shared/1553/gr1553b.c:231]: (error) …
09:08 Changeset in rtems [31be416]4.115 by Alexander Krutwig <alexander.krutwig@…>
timecounter: Port to RTEMS New test sptests/timecounter01. Update #2271.
07:50 Changeset in rtems [d3802bb5]4.115 by Sebastian Huber <sebastian.huber@…>
score: Delete object control block ISR lock The Objects_Control::Lock was a software layer violation. It worked only for the threads since they are somewhat special. Update #2273.
07:49 Changeset in rtems [413b9e28]4.115 by Sebastian Huber <sebastian.huber@…>
score: Modify _Thread_Dispatch_disable_critical() Return the current processor to be in line with _Thread_Disable_dispatch().
07:45 Changeset in rtems [1041de1]4.115 by Sebastian Huber <sebastian.huber@…>
score: Add _Thread_Get_interrupt_disable() Remove _Thread_Acquire() and _Thread_Acquire_for_executing(). Add utility functions for the default thread lock. Use the default thread lock for the RTEMS events. There is no need to disable thread dispatching and a Giant acquire in _Event_Timeout() since this was already done by the caller. Update #2273.
06:52 Changeset in rtems [3bf4a9fa]4.115 by Sebastian Huber <sebastian.huber@…>
score: _Objects_Get_isr_disable() Do not disable thread dispatching and do not acquire the Giant lock. This makes it possible to use this object get variant for fine grained locking. Update #2273.
06:45 Changeset in rtems [4db0ae8e]4.115 by Sebastian Huber <sebastian.huber@…>
score: _Objects_Get_isr_disable() Use ISR_lock_Context instead of ISR_Level to allow use of ISR locks for low-level locking. Update #2273.
05:00 GSoC/2015 edited by punitvara
(diff)
04:59 GSoC/2015 edited by punitvara
(diff)
04:57 GSoC/2015 edited by punitvara
(diff)

04/19/15:

11:26 Projects/GSoC/OpenRISC edited by Hesham Almatary
Update OpenRISC page with latest changes and or1ksim BSP renaming (diff)
11:04 Changeset in rtems-tools [3f3582f]4.104.115 by Hesham ALMatary <heshamelmatary@…>
Rename or1ksim BSP to generic_or1k
08:27 Changeset in rtems [1981b469]4.115 by Sebastian Huber <sebastian.huber@…>
score: Add _ISR_lock_ISR_disable/enable()
01:28 Changeset in rtems [5a8cd17]4.115 by Joel Sherrill <joel.sherrill@…>
simsh*.tcfg: Add iostream
01:27 Changeset in rtems [d9ef7ebe]4.115 by Joel Sherrill <joel.sherrill@…>
gensh2-testsuite.tcfg: Add iostream
01:27 Changeset in rtems [07d9954b]4.115 by Joel Sherrill <joel.sherrill@…>
gensh1-testsuite.tcfg: Add iostream
01:27 Changeset in rtems [ba885bd]4.115 by Joel Sherrill <joel.sherrill@…>
mbx8xx/include/bsp.h: Add include of <rtems/irq.h>
01:26 Changeset in rtems [9a9614e5]4.115 by Joel Sherrill <joel.sherrill@…>
ods68302-testsuite.tcfg: Add iosteam
01:26 Changeset in rtems [f620ac7]4.115 by Joel Sherrill <joel.sherrill@…>
mrm332-testsuite.tcfg: Add iostream and sptls02
01:25 Changeset in rtems [0c87234f]4.115 by Joel Sherrill <joel.sherrill@…>
mcf5225x-testsuite.tcfg: Add iostream
01:25 Changeset in rtems [e38fdc2]4.115 by Joel Sherrill <joel.sherrill@…>
lpc1768_mbed_ahb_ram_eth-testsuite.tcfg: Add sptls02

04/18/15:

16:25 Changeset in rtems [3d597c0]4.115 by Hesham ALMatary <heshamelmatary@…>
Rename or1ksim BSP to generic_or1k or1ksim BSP was initially named after or1ksim simulator, and it was intented to only run there. But now it can also run on QEMU, jor1k and real FPGA boards without modifications. It makes more sense to give it a new generic name like generic_or1k.
15:23 Changeset in rtems [2e9baac]4.115 by Joel Sherrill <joel.sherrill@…>
lm3s3749-testsuite.tcfg: Add cdtest
15:19 Ticket #2330 (nios2 missing atomics, fails to link C++) created by Joel Sherrill
nios2-rtems4.11-g++ -B../../../../../nios2_iss/lib/ -specs bsp_specs …

04/17/15:

15:16 Ticket #2329 (or1k Linking error on C++ tests) created by Joel Sherrill
I fixed the header file issue in 2326. This is a new issue which is …
15:10 Ticket #2326 (Or1k bsp not supported for c++ usage) closed by Joel Sherrill
fixed: http://devel.rtems.org/changeset/c5d86ec/rtems
14:46 Changeset in rtems [3985e758]4.115 by Joel Sherrill <joel.sherrill@…>
user/libpci.t: Make it build and clean up
14:45 Changeset in rtems [c5d86ec0]4.115 by Joel Sherrill <joel.sherrill@…>
or1k-utility.h: Add missing end of C++ header pattern closes 2326.
11:34 Ticket #2328 (_CORE_message_queue_Insert_message() not ISR proof) created by Sebastian Huber
In case the submit type is not CORE_MESSAGE_QUEUE_SEND_REQUEST or …
10:05 Changeset in rtems [26c142e5]4.115 by Sebastian Huber <sebastian.huber@…>
score: Refactor SMP cache manager support
08:46 Changeset in rtems [b8cdc38b]4.115 by Sebastian Huber <sebastian.huber@…>
sptests/sp52: Reduce clock tick interval This helps on slow simulators.
07:42 Ticket #2326 (Or1k bsp not supported for c++ usage) created by Alexander Krutwig
When ENABLE_RTEMS_CXX=yes, or1k build does not work properly. In …
07:18 Changeset in rtems [c7a6508]4.115 by Sebastian Huber <sebastian.huber@…>
Fix build for non-SPARC targets
06:59 Ticket #2325 (Broken console driver infrastructure for SPARC) created by Sebastian Huber
The stuff in "c/src/lib/libbsp/sparc/shared/uart/cons.c" should get …
06:45 Changeset in rtems [8d6fd40]4.115 by Sebastian Huber <sebastian.huber@…>
sapi: Avoid declaration in source, fix type

04/16/15:

20:24 Changeset in rtems [a211a732]4.115 by Sebastian Huber <sebastian.huber@…>
score: Fix _TOD_Set_with_timestamp() Update the current time before the watchdog adjust so that timer routines observe the new time.
19:29 Changeset in umon [24d5973] by Amar Takhar <amar@…>
Rename makefile -> Makefile.
19:29 Changeset in umon [4486a94] by Amar Takhar <amar@…>
Rename makefile -> Makefile.
19:26 Changeset in umon [87db514] by Amar Takhar <amar@…>
Initial commit of the umon repository. Prior to this three changes were made: * Remove umon_ prefix from parent directories. * Collapse main/target/ into main/ * Remove ports/template/flashtest.scr.ucon script.
19:26 Changeset in umon [dccd9f9] by Amar Takhar <amar@…>
Initial commit of the umon repository. Prior to this three changes were made: * Remove umon_ prefix from parent directories. * Collapse main/target/ into main/ * Remove ports/template/flashtest.scr.ucon script.
18:29 Changeset in rtems [ab69324]4.115 by Sebastian Huber <sebastian.huber@…>
sptests/sp68: Avoid use of internal variables
09:35 Changeset in rtems [64548a3a]4.115 by Sebastian Huber <sebastian.huber@…>
score: Add const qualifier
09:32 Changeset in rtems [72e846d]4.115 by Sebastian Huber <sebastian.huber@…>
score: Fix _API_Mutex_Is_locked() Remove superfluous ISR disable/enable. In addition using a stand-alone _ISR_Disable/Enable is wrong on SMP configurations.
09:23 Changeset in rtems [e98df4d]4.115 by Sebastian Huber <sebastian.huber@…>
score: Add _ISR_lock_Flash()
06:31 OpenMP edited by Sebastian Huber
(diff)

04/15/15:

19:39 Changeset in rtems [491434cd]4.115 by Joel Sherrill <joel.sherrill@…>
sp13: Document message buffer usage and adjust configuration
18:23 Changeset in rtems [45c9cf2a]4.115 by Sebastian Huber <sebastian.huber@…>
score: Delete unused WATCHDOG_MAXIMUM_INTERVAL
15:02 Changeset in rtems [cb02e8ac]4.115 by Joel Sherrill <joel.sherrill@…>
bf537Stamp: Re-enable bsp_reset()
14:28 Changeset in rtems [6d253941]4.115 by Sebastian Huber <sebastian.huber@…>
score: Add _Watchdog_Acquire|Release|Flash() Update #2307.
09:26 Changeset in rtems [2903090]4.115 by Sebastian Huber <sebastian.huber@…>
score: Add header to _Watchdog_Remove() Add watchdog header parameter to _Watchdog_Remove() to be in line with the other operations. Add _Watchdog_Remove_ticks() and _Watchdog_Remove_seconds() for convenience. Update #2307.
08:53 Changeset in rtems [1ccbd052]4.115 by Sebastian Huber <sebastian.huber@…>
score: Add Watchdog_Iterator Rewrite the _Watchdog_Insert(), _Watchdog_Remove() and _Watchdog_Tickle() functions to use iterator items to synchronize concurrent operations. This makes it possible to get rid of the global variables _Watchdog_Sync_level and _Watchdog_Sync_count which are a blocking point for scalable SMP solutions. Update #2307.
07:23 OpenMP edited by Sebastian Huber
(diff)
06:46 Changeset in rtems [644caa20]4.115 by Sebastian Huber <sebastian.huber@…>
score: Fix name
04:40 GSoC/2015 edited by punitvara
(diff)

04/14/15:

23:03 Changeset in rtems-tools [a68557d]4.104.115 by Joel Sherrill <joel.sherrill@…>
bf537Stamp: Add configuration files
20:01 Changeset in rtems [1aaf2fb]4.115 by Joel Sherrill <joel.sherrill@…>
lm32/shared/startup/bspreset.c: New file missed in previous commit
20:00 Changeset in rtems [b1debed0]4.115 by Joel Sherrill <joel.sherrill@…>
spcpuset01: Reduce output to reduce run-time
19:11 Ticket #2319 (_Objects_Allocator_unlock in sem_unlink() is missing) closed by Joel Sherrill
fixed: I am not sure why this didn't update with these commits so closing by hand. commit 1047f37cac02909b33d16462f14dc5f45e98d376 Author: Joel Sherrill <joel.sherrill@…> Date: Tue Apr 14 12:11:51 2015 -0500 semdestroy.c: Add missing _Objects_Allocator_unlock() closes 2319. commit 5049dca6c5dfdac12daadbf07385dc3ab006b51e Author: Daniel Krueger <daniel.krueger@…> Date: Fri Mar 13 12:54:16 2015 +0000 semunlink.c: Add missing _Objects_Allocator_unlock() updates 2319. Signed-off-by: Daniel Krueger <daniel.krueger@…> commit fc0756e8d9caf1155e2df1ad4a1282619c6668f1 Author: Joel Sherrill <joel.sherrill@…> Date: Tue Apr 14 10:01:05 2015 -0500 Add test assertion for allocator mutex being unlocked The Allocator Mutex should not be locked outside a tested service call. In an SMP test or heavily multithreaded test, this is possible since another thread could have the lock for an extended period of time but this is not the norm for the tests. updates 2319.
19:07 Changeset in rtems [351858d]4.115 by Joel Sherrill <joel.sherrill@…>
sp13: Update configuration to account for messages on fourth message queue
17:11 Changeset in rtems [1047f37]4.115 by Joel Sherrill <joel.sherrill@…>
semdestroy.c: Add missing _Objects_Allocator_unlock() closes 2319.
15:22 Changeset in rtems [0a73de2]4.115 by Hesham ALMatary <heshamelmatary@…>
or1ksim: Fix bug at UART driver. Fix some UART register addresses and implementation bugs that were causing malfunction of console driver on real hardware. hello and ticker samples are tested and working fine now on mor1kx based SoC on Atlys FPGA board. BSP_OR1K_OR1KSIM_PERIPHCLK has been changed to 50MHz as with mor1kx/atlys SoC; this change has no effect on the current simulators that RTEMS run on.
15:08 Changeset in rtems [74c4facd]4.115 by Joel Sherrill <joel.sherrill@…>
tms570/startup/bspreset.c: Add include <bsp/bootcard.h> to fix warning
15:01 Changeset in rtems [fc0756e]4.115 by Joel Sherrill <joel.sherrill@…>
Add test assertion for allocator mutex being unlocked The Allocator Mutex should not be locked outside a tested service call. In an SMP test or heavily multithreaded test, this is possible since another thread could have the lock for an extended period of time but this is not the norm for the tests. updates 2319.
13:53 Ticket #2324 (Documentation and quick start for the RSB) created by punitvara
[https://ftp.rtems.org/pub/rtems/people/chrisj/source-builder/source-bu
13:48 Ticket #2323 (Documentation and quick start for the RSB,) created by punitvara
[https://ftp.rtems.org/pub/rtems/people/chrisj/source-builder/source-bu
07:31 Changeset in rtems [c77e3cb]4.115 by Daniel Hellstrom <daniel@…>
LEON3: gptimer drvmgr init simplified wrt boot
07:29 Changeset in rtems [045de35]4.115 by Daniel Hellstrom <daniel@…>
MERGE: new system clock implementation
07:28 Changeset in rtems [9fe249d]4.115 by Daniel Hellstrom <daniel@…>
LEON3: move timer variable to where initialized
07:24 Changeset in rtems [efd43ad]4.115 by Daniel Hellstrom <daniel@…>
LEON3: simplify amba initialization
06:18 Changeset in rtems [628e739]4.115 by Daniel Hellstrom <daniel@…>
LEON3: clock irq always same as timer instance The leon.h already contains the definition of LEON3_CLOCK_INDEX and irq must always follow that when separate IRQ is supported by the HW. The definitions are resued from leon.h.

04/13/15:

14:53 TBR/UserManual/Using_the_RTEMS_DOS_File_System edited by Wendell P Silva
(diff)
14:17 Developer/FileSystems edited by Wendell P Silva
(diff)
13:57 TBR/UserManual/Using_the_RTEMS_DOS_File_System edited by Wendell P Silva
(diff)
11:57 Changeset in rtems [1dc6662]4.115 by Sebastian Huber <sebastian.huber@…>
score: Rename _Watchdog_Reset() Update #2307.
11:12 Changeset in rtems [291c5391]4.115 by Daniel Hellstrom <daniel@…>
DRVMGR: remove struct driver registration func
11:02 Ticket #2322 (2.5. Distributing and Archiving A Build) created by punitvara
[https://ftp.rtems.org/pub/rtems/people/chrisj/source-builder/source-bu
11:01 Ticket #2321 (Distributing and Archiving A Build) created by punitvara
[https://ftp.rtems.org/pub/rtems/people/chrisj/source-builder/source-bu
10:58 Changeset in rtems [4c9c46d]4.115 by Daniel Hellstrom <daniel@…>
DRVMGR: clean-up DRV_OPS_NUM
09:31 Changeset in rtems [bef5e23e]4.115 by Daniel Hellstrom <daniel@…>
DRVMGR: renamed RES_EMPTY to DRVMGR_RES_EMPTY
09:26 Changeset in rtems [4d3e70f4]4.115 by Daniel Hellstrom <daniel@…>
DRVMGR: KEY_TYPE now a enum drvmgr_kt
09:12 Changeset in rtems [14d55deb]4.115 by Daniel Hellstrom <daniel@…>
DRVMGR: renamed info_dev to get_info_dev
09:07 Changeset in rtems [246fe22]4.115 by Daniel Hellstrom <daniel@…>
DRVMGR: change name of freq_get to get_freq
08:49 Changeset in rtems [bb2f220]4.115 by Daniel Hellstrom <daniel@…>
DRVMGR: renamed private drv_mgr and its struct name
08:47 Changeset in rtems [bf2c3f8b]4.115 by Daniel Hellstrom <daniel@…>
DRVMGR: updated README
08:32 Changeset in rtems [4f09060]4.115 by Daniel Hellstrom <daniel@…>
DRVMGR: only build on SPARC platform
08:25 Changeset in rtems [4a7d1026]4.115 by Daniel Hellstrom <daniel@…>
sparc bsps: updated license to rtems.org
08:12 Changeset in rtems [1f66914]4.115 by Daniel Hellstrom <daniel@…>
LIBPCI: moved pci_bus copyright into a single line
07:01 Changeset in rtems [4431f7d]5 by Daniel Hellstrom <daniel@…>
leon, gr1553b: RT status words register declarations fix The fix does not affect the driver since the bit definitions were never used by the GR5133B drivers. However it could affect and application using the definitions.

04/12/15:

06:02 Ticket #2320 (rtems ftp server) created by punitvara
Why this link gives error .No page …

04/10/15:

14:19 Changeset in rtems [54cf0e34]4.115 by Sebastian Huber <sebastian.huber@…>
score: Add Watchdog_Header This type is intended to encapsulate all state to manage a watchdog chain. Update #2307.
13:51 Changeset in rtems [bcf536a]4.115 by Sebastian Huber <sebastian.huber@…>
score: Split _Watchdog_Adjust() Split _Watchdog_Adjust() into _Watchdog_Adjust_backward() and _Watchdog_Adjust_forward(). Remove Watchdog_Adjust_directions, _Watchdog_Adjust_seconds() and _Watchdog_Adjust_ticks(). This avoids to check the same condition again. Update #2307.
13:31 Changeset in rtems [a382010c]4.115 by Sebastian Huber <sebastian.huber@…>
score: New timer server implementation Use mostly the standard watchdog operations. Use a system event for synchronization. This implementation is simpler and offers better SMP performance. Close #2131.
07:24 OpenMP edited by Sebastian Huber
(diff)
06:23 Changeset in rtems [a1d6f7a]4.115 by Thomas Volgmann <Thomas.Volgmann@…>
bsp/altera-cyclone-v: Add RTC driver
06:17 Ticket #2318 (Wrong alignment of ARM exception frame) closed by Daniel Krueger <daniel.krueger@…>
fixed: In a6c5a7e0b68ea9b9eed98997b85fe49434eeb1c8/rtems: […]

04/09/15:

19:41 Developer/GSoC/ProjectManagement edited by Gedare Bloom
Update expectations for midterm. (diff)
19:37 GSoC/2015 edited by Gedare Bloom
Add calendar entry to tracking table. (diff)
14:55 Ticket #2319 (_Objects_Allocator_unlock in sem_unlink() is missing) created by Daniel Krüger
See attached patch for proposed fix.
14:52 Ticket #2318 (Wrong alignment of ARM exception frame) created by Daniel Krüger
The stack pointer must be aligned on 8 byte boundary on ARM, so the …
14:09 Changeset in rtems [e53daed]4.115 by Daniel Hellstrom <daniel@…>
LIBPCI: updated license to rtems.org
14:09 Changeset in rtems [0decc806]4.115 by Daniel Hellstrom <daniel@…>
DRVMGR: updated license to rtems.org
13:03 OpenMP edited by Sebastian Huber
(diff)
11:54 Changeset in rtems [41814fa6]4.115 by Sebastian Huber <sebastian.huber@…>
score: Fix thread queue race condition On uni-processor configurations the change of the thread blocking state in _Thread_queue_Requeue_priority() did no harm and was simply useless. However on SMP configurations this resulted in invalid state changes leading to a wrong resource ownership.
06:36 Changeset in rtems [cc3f87c0]4.115 by Daniel Hellstrom <daniel@…>
DRVMGR: removed a goto and added comments
Note: See TracTimeline for information about the timeline view.