Timeline



03/27/14:

23:57 Ticket #1713 (networking stack is not 64-bit clean) closed by Gedare Bloom
wontfix: Going to wait on the new stack and just consider the old stack is broken on the sparc64.
23:56 Ticket #2043 (doc: configure silent fail) closed by Gedare Bloom
invalid: You have to specify a comment when changing the status of a bug from NEW to RESOLVED.
23:54 Ticket #1892 (RBTree Extract hook) closed by Gedare Bloom
wontfix: The current implementation seems to be satisfactory without adding function hooks.
23:54 Ticket #1891 (RBTree insert and find functions) closed by Gedare Bloom
wontfix: The current implementation seems to be satisfactory without adding function hooks.
14:47 Changeset in rtems [719c7e5]4.115 by Bjorn Larsson <bjornlarsson@…>
sptask_err03: New test split from sp09 screen 3.
13:46 Changeset in rtems [03e89287]4.115 by Sebastian Huber <sebastian.huber@…>
score: Delete CORE_mutex_Control::lock The holder field is enough to determine if a mutex is locked or not. This leads also to better error status codes in case a rtems_semaphore_release() is done for a mutex without having the ownership.
13:29 Changeset in rtems [b1ce1161]4.115 by Sebastian Huber <sebastian.huber@…>
score: Delete CORE_mutex_Control::holder_id We can use the holder pointer to get the identifier if necessary.
13:23 Changeset in rtems [5c0c0cf]4.115 by Christian Mauderer <Christian.Mauderer@…>
privateenv: Use POSIX keys instead of task variables.
13:23 Changeset in rtems [7d5c27e]4.115 by Christian Mauderer <Christian.Mauderer@…>
privateenv: Remove sharing of user environment between threads.
13:16 Changeset in rtems [23fec9f0]4.115 by Sebastian Huber <sebastian.huber@…>
score: PR2152: Use allocator mutex for objects Use allocator mutex for objects allocate/free. This prevents that the thread dispatch latency depends on the workspace/heap fragmentation.
12:38 Changeset in rtems [34684573]4.115 by Sebastian Huber <sebastian.huber@…>
score: Use thread life protection for API mutexes This prevents that asynchronous thread deletion can lead to an unusable allocator or once mutex.
08:04 Changeset in rtems [91e7b0c]4.115 by Sebastian Huber <sebastian.huber@…>
score: PR2172: _Thread_queue_Extract() Add _Thread_queue_Extract_with_return_code(). On SMP this sequence in _Thread_queue_Process_timeout() was broken: […] /* * After we enable interrupts here, a lot may happen in the * meantime, e.g. nested interrupts may release the resource that * times out here. So we enter _Thread_queue_Extract() * speculatively. Inside this function we check the actual status * under ISR disable protection. This ensures that exactly one * executing context performs the extract operation (other parties * may call _Thread_queue_Dequeue()). If this context won, then * we have a timeout. * * We can use the_thread_queue pointer here even if * the_thread->Wait.queue is already set to NULL since the extract * operation will only use the thread queue discipline to select * the right extract operation. The timeout status is set during * thread queue initialization. */ we_did_it = _Thread_queue_Extract( the_thread_queue, the_thread ); if ( we_did_it ) { the_thread->Wait.return_code = the_thread_queue->timeout_status; } […] In case _Thread_queue_Extract() successfully extracted a thread, then this thread may start execution on a remote processor immediately and read the the_thread->Wait.return_code before we update it here with the timeout status. Thus it observes a successful operation even if it timed out.
08:04 Changeset in rtems [0cd2b777]4.115 by Sebastian Huber <sebastian.huber@…>
samples/base_mp: Include missing header file
07:30 Changeset in rtems [600bb68f]4.115 by Sebastian Huber <sebastian.huber@…>
score: _Thread_queue_Extract_with_proxy() Drop the return status, since it is nowhere used.
07:04 Changeset in rtems [cb8d3e7]4.115 by Sebastian Huber <sebastian.huber@…>
score: Delete CORE_mutex_Control::blocked_count

03/26/14:

18:22 Changeset in rtems [4327a7b]4.115 by Bjorn Larsson <bjornlarsson@…>
spevent_err03: New test split from sp09 screen 4.
14:56 Changeset in rtems [d6f65e40]4.115 by Bjorn Larsson <bjornlarsson@…>
sptests: split sp09 screen 5,6 into spsem_err01, spsem_err02, and sptask_err01. sp09 screen 5 split into spsem_err01, sp09 screen 6 split into spsem_err02, and sptask_err01.
06:13 Changeset in rtems-source-builder [8c19df2]4.104.114.95 by Chris Johns <chrisj@…>
sb: Fix git to clean before updating.
06:12 Changeset in rtems-source-builder [b77019a]4.104.114.95 by Chris Johns <chrisj@…>
config: Build without zlib due to errors in psim.
06:12 Changeset in rtems-source-builder [ed8a66a]4.104.114.95 by Chris Johns <chrisj@…>
config: Add support for gcc-4.8-branch testing.
05:45 Changeset in rtems-tools [05d2385]4.104.115 by Chris Johns <chrisj@…>
bsp: Add psim.
05:45 Changeset in rtems-tools [a116962]4.104.115 by Chris Johns <chrisj@…>
tester: The process returns an exit code not an errno.

03/25/14:

18:48 Changeset in rtems [a3707d89]4.115 by Bjorn Larsson <bjornlarsson@…>
sptests: Split sp09 screens 7,8 into spmsg1_err01 and spmsgq_err02. spmsgq_err01 test replaces rtems_message_queue_XXX error tests from sp09 screen 7. spmsgq_err02 replaces rtems_message_queue_XXX error tests from sp09 screen 8.
17:51 Changeset in rtems [abc833bd]4.115 by Bjorn Larsson <bjornlarsson@…>
spport_err01: New test split from sp09 This test verifies rtems_port_XXX error tests from sp09 screen 9.
15:45 Changeset in rtems [8c26e798]4.115 by Sebastian Huber <sebastian.huber@…>
tests: Produce proper begin/end messages
14:58 Changeset in rtems [34244b7a]4.115 by Bjorn Larsson <bjornlarsson@…>
spsignal_err01: New test split from sp09. This test moves rtems_signal_send error testing from sp09 screen 9 into its own test.
14:43 Changeset in rtems [0cf41e5]4.115 by Bjorn Larsson <bjornlarsson@…>
spintr_err01: New test split from sp09. This test contains the interrupt catch error tests from sp09 screen 9.
14:13 Changeset in rtems [9c88bc6e]4.115 by Bjorn Larsson <bjornlarsson@…>
spratemon_err01: New test split from sp09.
13:15 Changeset in rtems [a75242eb]4.115 by Sebastian Huber <sebastian.huber@…>
tmtests/tmcontext01: Use <rtems/test.h>
10:03 Changeset in rtems [226c731]4.115 by Sebastian Huber <sebastian.huber@…>
score: Replace _Thread_Reset() Replace _Thread_Reset() with _Thread_Start_life_change(). This function can be later used for the _Thread_Close() implementation.
09:54 Changeset in rtems [1b1be254]4.115 by Sebastian Huber <sebastian.huber@…>
score: Thread life cycle re-implementation The thread deletion is now supported on SMP. This change fixes the following PRs: PR1814: SMP race condition between stack free and dispatch PR2035: psxcancel reveals NULL pointer access in _Thread_queue_Extract() The POSIX cleanup handler are now called in the right context (should be called in the context of the terminating thread). http://pubs.opengroup.org/onlinepubs/009695399/functions/xsh_chap02_09.html Add a user extension the reflects a thread termination event. This is used to reclaim the Newlib reentrancy structure (may use file operations), the POSIX cleanup handlers and the POSIX key destructors.
09:53 Changeset in rtems [8690b53]4.115 by Sebastian Huber <sebastian.huber@…>
score: Add parameter to _Thread_Restart() The executing thread will be later used for a common implementation with _Thread_Close().
08:46 Changeset in rtems [65612cc]4.115 by Sebastian Huber <sebastian.huber@…>
sptests/spprintk: Use <rtems/test.h>
07:53 Changeset in rtems [5f104ee]4.115 by Sebastian Huber <sebastian.huber@…>
score: Fix heap protection Partially revert commit 2a713e3b944625c45154f0ea7f5703e918de758.
07:06 Changeset in rtems [6c0301d]4.115 by Sebastian Huber <sebastian.huber@…>
tests/sptests: Use <rtems/test.h>
07:06 Changeset in rtems [698c2e50]4.115 by Sebastian Huber <sebastian.huber@…>
tests/psxtests: Use <rtems/test.h>
07:06 Changeset in rtems [22729053]4.115 by Sebastian Huber <sebastian.huber@…>
tests: Use rtems_status_text()

03/24/14:

15:29 TBR/BSP/Beagleboard edited by Beng
expanded overview with wikipedia overview link of various beagle targets (4) (diff)
15:13 TBR/BSP/Beagleboard edited by Beng
formatting prettier (diff)
15:08 TBR/BSP/Beagleboard edited by Beng
documenting my experiments with booting this image on the bbxm (emulator). (diff)
14:57 TBR/BSP/Beagleboard edited by Beng
correct some formatting (diff)
14:57 Changeset in rtems [2a713e3]4.115 by Sebastian Huber <sebastian.huber@…>
score: _Heap_Protection_set_delayed_free_fraction Add and use _Heap_Protection_set_delayed_free_fraction(). This makes it possible to avoid a dependency on _Thread_Dispatch_is_enabled().
13:47 Ticket #2175 (C++ Exception Catch Handler Crash on Sparc ERC32 Simulator(SIS)) created by JunBeom Kim
* RTEMS : 4.11 version * GCC : 4.8.1 & 4.8.2 * Target : SIS(Sparc …
09:32 Changeset in rtems [89aa1ec8]4.115 by James Fitzsimons <james.fitzsimons@…>
m68k/mrm332: changes required to get the mrm332 bsp working again. Changed console driver to use interrupts instead of polling. Change to avoid overwriting CPU32Bug interrupt vector when setting up the Sci interrupt handler. Fixed type for boolean flag in bsp.h. Changed mrm332.h to use 25Mhz clock. Fixes to mrm332.cfg to use correct mcpu32 value for RTEMS_CPU_MODEL instead of m68332 which is no longer supported. Added -mcpu=cpu32 to compiler options. Removed broken ROM linker script and replaced broken RAM linker script with working ROM linker script. Removed no longer required file except_vect_332_ROM.S. Enabled 0xbeefbeef magic string in start.S to allow MRM version of CPU32Bug to auto run RTEMS. Removed old code from start.S Changed compiler optimization flag to optimize for size.
07:54 Changeset in rtems [67a4842]4.115 by Daniel Cederman <cederman@…>
bsps/sparc: Make local functions for amba plug&play static.
07:51 Changeset in rtems [1fac361]4.115 by Sebastian Huber <sebastian.huber@…>
score: PR2174: Add workaround Add _Scheduler_FIXME_thread_priority_queues_are_broken to prevent thread priority queues in case an EDF scheduler is used.
06:54 Changeset in rtems [383b2d3]4.115 by Sebastian Huber <sebastian.huber@…>
score: Start thread dispatch profiling later We are not interested in the sequential boot time.
06:53 Changeset in rtems [9b44339c]4.115 by Sebastian Huber <sebastian.huber@…>
score: Delete _Watchdog_Report() Delete _Watchdog_Report_chain(). These two functions use printk() with thread dispatching and interrupts disabled. So they are pretty useless in real applications. They are not part of the application APIs. They are only used in one test and do nothing useful in this test.
06:53 Changeset in rtems [72d8db9c]4.115 by Sebastian Huber <sebastian.huber@…>
score: Delete _Thread_Internal_free()
06:44 Changeset in rtems [298d0fd]4.115 by Sebastian Huber <sebastian.huber@…>
score: Add _Scheduler_Highest_priority_of_two() Use inline functions instead of macros for _Scheduler_Is_priority_lower_than() and _Scheduler_Is_priority_higher_than().
06:08 Ticket #2174 (Memory corruption with EDF scheduler and thread priority queues) created by Sebastian Huber
On 2014-03-21 14:51, Gedare Bloom wrote:> On Fri, Mar 21, 2014 at 9:32 …
06:06 Ticket #2173 (Potential integer overflow problem in EDF scheduler) created by Sebastian Huber
On 2014-03-21 14:46, Gedare Bloom wrote:> On Fri, Mar 21, 2014 at 9:43 …
00:04 TBR/BSP/Phycore_mpc5554 edited by Dufault
(diff)
00:03 TBR/BSP/Phycore_mpc5554 edited by Dufault
(diff)
00:00 TBR/BSP/Phycore_mpc5554 edited by Dufault
Distinguish between what's on the board and what's on the chip. (diff)

03/22/14:

08:05 TBR/BSP/Beagleboard edited by Beng
updated beagleboard wiki entry with what i had to find out to get it to work. also a pointer to my git repo of the updated code to get it to work in (a) mainline rtems and (b) with the current toolchain and (c) the name of the current toolchain (diff)

03/21/14:

20:35 Changeset in rtems [fd46711]4.115 by bjorn larsson <bjornlarsson@…>
psxtmtests: Add test.h support
15:48 Changeset in rtems [2ead50a]4.115 by bjorn larsson <bjornlarsson@…>
tmtests: convert to test.h
13:29 Changeset in rtems [5ef9f23]4.115 by Christian Mauderer <Christian.Mauderer@…>
libcsupport: Use POSIX keys for GXX key functions With this patch C++ applications now eventually need additional POSIX-keys and POSIX-key-value-pairs configured.
13:17 Changeset in rtems [8e133b25]4.115 by Christian Mauderer <Christian.Mauderer@…>
librpc: Use POSIX key instead of task variables
11:07 Changeset in rtems [9d9df8b]4.115 by Christian Mauderer <Christian.Mauderer@…>
libcsupport: Remove unused gxx-wrapper function. The rtems_gxx_key_dtor function is not longer used by gcc.
11:07 Changeset in rtems [01f23374]4.115 by Christian Mauderer <Christian.Mauderer@…>
posix: Prevent pthread_setspecific from returning EAGAIN. The man-page for pthread_setspecific does not define the EAGAIN return value. Further without this patch it was not possible to set keys that have been already set a new value. Add test for setting a new value to a already set key.
09:12 Ticket #2172 (SMP: System corruption revealed with test smpload01) created by Sebastian Huber
See FIXME comment in smpload01 test: …
08:53 Changeset in rtems [9486566]4.115 by Sebastian Huber <sebastian.huber@…>
smptests/smpload01: Improve test Add a task producing memory traffic. Add tasks to obtain a priority inheritance semaphore in a synchronized way.
02:53 GSoC edited by AoLaD
/* Students' Proposals */ (diff)

03/20/14:

22:43 Changeset in rtems [8cc7084]4.115 by Joel Sherrill <joel.sherrill@…>
doc misc: Building again and updates Remove references to Cygnus Fix issues introduced in previous edits
21:19 Changeset in rtems [98fd415]4.115 by Joel Sherrill <joel.sherrill@…>
relnotes/status.texi: Update to Bugzilla
21:18 Changeset in rtems [0b7e5f75]4.115 by Joel Sherrill <joel.sherrill@…>
HELP.html Makefile.am: Remove unused HELP.html
21:17 Changeset in rtems [0dd02c68]4.115 by Joel Sherrill <joel.sherrill@…>
cpright.texi: Update to reflect services and community
21:16 Changeset in rtems [f5bbc042]4.115 by Joel Sherrill <joel.sherrill@…>
started/buildc.t: Change CVS to Git
21:16 Changeset in rtems [df40cc9]4.115 by Joel Sherrill <joel.sherrill@…>
started/buildrt.t: Change CVS to Git
21:10 Changeset in rtems [c499856]4.115 by Chris Johns <chrisj@…>
Change all references of rtems.com to rtems.org.
20:47 Changeset in rtems-source-builder [40d25dc]4.104.114.95 by Joel Sherrill <joel.sherrill@…>
4.11/rtems-v850.bset: Add gcc 4.8.2 patch
20:21 Changeset in rtems-tools [ec18d1d]4.104.115 by Joel Sherrill <joel.sherrill@…>
gcc-4.8.2-rtems4.11-20140349.diff: New file
19:19 Changeset in rtems-source-builder [dac3a03]4.104.114.95 by Joel Sherrill <joel.sherrill@…>
source-builder.txt: Correct spelling errors
17:47 Changeset in rtems [4c36cd5b]4.115 by Joel Sherrill <joel.sherrill@…>
relnotes/intro.texi: Change rtems.com to rtems.org and update
16:57 Changeset in rtems [a86d13a]4.115 by Joel Sherrill <joel.sherrill@…>
texi2html_init.in: Reword rtems.com to rtems.org
12:18 Changeset in rtems [f68401e]4.115 by Sebastian Huber <sebastian.huber@…>
fstests/fsrename: Fix stack corruption Use snprintf() instead of sprintf(). Include missing header files.
09:00 Changeset in rtems [b0efca5]4.115 by Sebastian Huber <sebastian.huber@…>
score: _Debug_Is_thread_dispatching_allowed() Do not check ISR level in _Debug_Is_thread_dispatching_allowed().
08:22 Changeset in rtems [a5385b1]4.115 by Christian Mauderer <Christian.Mauderer@…>
score: Unify pthread and gxx_wrapper once and move to score.
08:09 Changeset in rtems [802d3ba]4.115 by Sebastian Huber <sebastian.huber@…>
tests/fstests: Remove duplicate begin/end messages Fix file system names. Remove superfluous defines.
07:16 Changeset in rtems [b3b9600]4.115 by Sebastian Huber <sebastian.huber@…>
score: Delete unused STATES_ALL_SET
01:39 Changeset in rtems-source-builder [5111acf]4.104.114.95 by Chris Johns <chrisj@…>
doc: New version and date.
01:37 Changeset in rtems-source-builder [1180988]4.104.114.95 by Chris Johns <chrisj@…>
doc: Add patch details.
00:06 Changeset in rtems-source-builder [9b1ae21]4.104.114.95 by Chris Johns <chrisj@…>
freebsd: Add support for FreeBSD 10.0. GDB did not build out of the box on FreeBSD 10.0 due to the iconv move to libc effecting the gettext port with Python. The patch provided is from the gdb port (devel/gdb) and add the LDFLAGS to the link command line when Python is used and this adds /usr/local/lib if needed.

03/19/14:

22:22 GSoC edited by Hesham
/* Students' Proposals */ (diff)
20:21 Changeset in rtems [e045fb6c]4.115 by Jennifer Averett <jennifer.averett@…>
posix: Move affinity from thread to scheduler.
20:20 Changeset in rtems [56c396b]4.115 by Jennifer Averett <jennifer.averett@…>
score: Add priority affinity smp scheduler.
16:17 Changeset in rtems [6cd4a5c]4.115 by Christian Mauderer <Christian.Mauderer@…>
cpukit/shell: Replace task variables with posix keys. Use posix keys for current shell environment instead of task variables. With this patch the shell needs one posix-key and one posix-key-value-pair configured. Update documentation for the shell. Adapt samples/fileio: - Add necessary objects. - Add login function and custom device name for better testing of the shell.
14:50 Changeset in rtems [7205189]4.115 by Jennifer Averett <jennifer.averett@…>
posix: Modified pthread init to use cpuset default.
09:40 Changeset in rtems [3b5e7dc]4.115 by Sebastian Huber <sebastian.huber@…>
score: Set name before object is made public
04:15 Changeset in rtems-tools [e959da9]4.104.115 by Chris Johns <chrisj@…>
4.11/gdb: Fix detecting python when building GDB on FreeBSD 10.0. This patch is from the FreeBSD 10.0 devel/gdb port and adds the LDFLAGS to link command line with Python enabled. Note, this may effect some hosts if there are library clashes.
04:07 GSoC edited by Just Janek
Added Janek's GSoC 2014 information to the proposal table (diff)

03/18/14:

18:55 Changeset in rtems [54f345f5]4.115 by Jennifer Averett <jennifer.averett@…>
rtems: Move affinity from thread to scheduler.
18:54 Changeset in rtems [6d24e8b]4.115 by Jennifer Averett <jennifer.averett@…>
sapi: Add priority affinity smp scheduler.
17:52 Changeset in rtems [da5b1b9]4.115 by Jennifer Averett <jennifer.averett@…>
score: Remove affinity element from thread.
17:44 Changeset in rtems [af53e6cf]4.115 by Jennifer Averett <jennifer.averett@…>
smpaffinity01: Use Priority Affinity SMP scheduler.
17:43 Changeset in rtems [d4e1ead]4.115 by Jennifer Averett <jennifer.averett@…>
smppsxaffinity01: Use Priority Affinity SMP scheduler.
17:43 Changeset in rtems [cb283959]4.115 by Jennifer Averett <jennifer.averett@…>
smppsxaffinity02: Use Priority Affinity SMP scheduler.
15:25 Changeset in rtems [4484112]4.115 by Christian Mauderer <Christian.Mauderer@…>
psxonce01: Add call counter to check if init function has been called.
15:25 Changeset in rtems [6592cab]4.115 by Christian Mauderer <Christian.Mauderer@…>
psxtests: move pthread_once tests into an extra test.
15:13 Changeset in rtems [084c5cc]4.115 by Sebastian Huber <sebastian.huber@…>
score: Reduce _Thread_Reset() parameters Move thread entry parameters out of _Thread_Reset() to enable re-usablity of this function.
15:11 Changeset in rtems [dcd5e26]4.115 by Sebastian Huber <sebastian.huber@…>
score: Move _Thread_Reset() and make static
12:22 Changeset in rtems [f31311aa]4.115 by Sebastian Huber <sebastian.huber@…>
score: Add _Assert_Not_reached()
11:11 Changeset in rtems [72f4b98b]4.115 by Sebastian Huber <sebastian.huber@…>
score: Add _Debug_Is_owner_of_allocator()
10:56 Changeset in rtems [a3dd225b]4.115 by Sebastian Huber <sebastian.huber@…>
score: Delete _Assert_Owner_of_giant() Add _Debug_Is_owner_of_giant(). This makes it possible to assert the opposite.
10:49 Changeset in rtems [ff25926]4.115 by Sebastian Huber <sebastian.huber@…>
score: Delete _Assert_Thread_dispatching_repressed Add _Debug_Is_thread_dispatching_allowed(). This makes it possible to assert the opposite. Use _ISR_Disable_without_giant()/_ISR_Enable_without_giant() to avoid misleading secondary assertion failures.
09:56 Changeset in rtems [fa3993d9]4.115 by Sebastian Huber <sebastian.huber@…>
score: Make _ISR_Enable_without_giant() available Make _ISR_Enable_without_giant() available for non-SMP configurations.
09:04 Changeset in rtems [614cd7a]4.115 by Sebastian Huber <sebastian.huber@…>
rtems: Include missing header file
07:28 Changeset in rtems [51f823c9]4.115 by Sebastian Huber <sebastian.huber@…>
posix: Use interal mutex for once implementation Enable pthread_once() for all configurations. The pthread_once() function is one means to initialize POSIX keys. Another use case is the C++ support.

03/17/14:

18:25 Changeset in rtems [82e507e]4.115 by Joel Sherrill <joel.sherrill@…>
no_bsp/shmsupp/lock.c: Remove rtems_bsp_delay()
18:25 Changeset in rtems [8d687914]4.115 by Joel Sherrill <joel.sherrill@…>
no_bsp/include/bsp.h: Remove rtems_bsp_delay()
18:25 Changeset in rtems [bd7dd3b0]4.115 by Joel Sherrill <joel.sherrill@…>
nios2_iss/include/bsp.h: Remove rtems_bsp_delay()
18:25 Changeset in rtems [b51e44ad]4.115 by Joel Sherrill <joel.sherrill@…>
moxiesim/include/bsp.h: Remove rtems_bsp_delay()
18:25 Changeset in rtems [43e5a3c]4.115 by Joel Sherrill <joel.sherrill@…>
sim68000/include/bsp.h: Remove rtems_bsp_delay()
18:25 Changeset in rtems [2e9efbf]4.115 by Joel Sherrill <joel.sherrill@…>
ods68302/include/bsp.h: Remove rtems_bsp_delay()
18:25 Changeset in rtems [a4ee9f5]4.115 by Joel Sherrill <joel.sherrill@…>
mvme136/include/bsp.h: Remove rtems_bsp_delay()
18:25 Changeset in rtems [3420b6b]4.115 by Joel Sherrill <joel.sherrill@…>
mrm332/include/bsp.h: Remove rtems_bsp_delay()
18:25 Changeset in rtems [65e0fece]4.115 by Joel Sherrill <joel.sherrill@…>
gen68360/include/bsp.h: Remove rtems_bsp_delay()
18:25 Changeset in rtems [99a1a2c5]4.115 by Joel Sherrill <joel.sherrill@…>
gen68340/include/bsp.h: Remove rtems_bsp_delay()
18:25 Changeset in rtems [3139c1d0]4.115 by Joel Sherrill <joel.sherrill@…>
gen68302/include/bsp.h: Remove rtems_bsp_delay()
18:25 Changeset in rtems [130f01b]4.115 by Joel Sherrill <joel.sherrill@…>
m32rsim/include/bsp.h: Remove rtems_bsp_delay()
18:25 Changeset in rtems [0758923]4.115 by Joel Sherrill <joel.sherrill@…>
m32cbsp/include/bsp.h: Remove rtems_bsp_delay()
18:25 Changeset in rtems [0e363f4]4.115 by Joel Sherrill <joel.sherrill@…>
lm32_evr/include/bsp.h: Remove rtems_bsp_delay()
18:25 Changeset in rtems [31f1ef9d]4.115 by Joel Sherrill <joel.sherrill@…>
pc386/include/bsp.h: Remove rtems_bsp_delay()
18:25 Changeset in rtems [43af31d]4.115 by Joel Sherrill <joel.sherrill@…>
h8sim/include/bsp.h: Remove rtems_bsp_delay()
18:23 Changeset in rtems [8fd544d5]4.115 by Joel Sherrill <joel.sherrill@…>
gensh1/include/bsp.h: Remove rtems_bsp_delay()
18:23 Changeset in rtems [5830f5a]4.115 by Joel Sherrill <joel.sherrill@…>
gensh2/include/bsp.h: Remove rtems_bsp_delay()
18:23 Changeset in rtems [770ad77]4.115 by Joel Sherrill <joel.sherrill@…>
gensh4/include/bsp.h: Remove rtems_bsp_delay()
18:23 Changeset in rtems [851c44ef]4.115 by Joel Sherrill <joel.sherrill@…>
shsim/include/bsp.h: Remove rtems_bsp_delay()
18:23 Changeset in rtems [8c4821e]4.115 by Joel Sherrill <joel.sherrill@…>
usiii/include/bsp.h: Remove rtems_bsp_delay()
18:20 Changeset in rtems [64fa6e69]4.115 by Joel Sherrill <joel.sherrill@…>
niagara/include/bsp.h: Remove rtems_bsp_delay()
18:19 Changeset in rtems [e31e6b9]4.115 by Joel Sherrill <joel.sherrill@…>
gba/include/bsp.h: Remove rtems_bsp_delay()
14:03 Changeset in rtems [391ad3e]4.115 by Sebastian Huber <sebastian.huber@…>
score: Fix thread restart extensions context Run the thread restart extensions in the context of the restarted thread. Run them with thread dispatching enabled.
12:20 Changeset in rtems [65c0166]4.115 by Sebastian Huber <sebastian.huber@…>
smptests/smpload01: Use test extension
09:12 Changeset in rtems [5c731a83]4.115 by Sebastian Huber <sebastian.huber@…>
score: Use thread action for thread restart The thread restart is now supported on SMP. New test smptests/smpthreadlife01.
07:10 Changeset in rtems [f8b2eb03]4.115 by Sebastian Huber <sebastian.huber@…>
tests/libtests: Use <rtems/test.h>
07:10 Changeset in rtems [ad48ebb]4.115 by Sebastian Huber <sebastian.huber@…>
tests/smptests: Use <rtems/test.h>
01:56 TBR/BSP/Niagara edited by KarelGardas
Fix link to OpenSPARC T1 architecture and performance modelling tools (diff)

03/16/14:

15:15 Changeset in rtems [bc75887]4.115 by Sebastian Huber <sebastian.huber@…>
tests/fstests: Use <rtems/test.h>
11:40 Developer/Simulators/QEMU edited by Jinyang
(diff)
11:29 GSoC edited by Jinyang
(diff)

03/14/14:

18:22 Changeset in rtems [73b9af2d]4.115 by Gedare Bloom <gedare@…>
sparc64/niagara: add bsp_fatal_handler to terminate execution Terminates the execution of niagara BSP when running in gem5.
17:39 Changeset in rtems [c2007c2c]4.115 by Joel Sherrill <joel.sherrill@…>
avrtest/include/bsp.h: Remove rtems_bsp_delay()
17:38 Changeset in rtems [31f0458a]4.115 by Joel Sherrill <joel.sherrill@…>
eZKit533/include/bsp.h: Remove rtems_bsp_delay()
14:06 Changeset in rtems [5dc268f9]4.115 by Ralf Kirchner <ralf.kirchner@…>
libchip: Relax buffer counts and add fatal error
12:55 Changeset in rtems [d6da1b1]4.115 by Sebastian Huber <sebastian.huber@…>
score: Use only next field for chain on/off It is sufficient to use one field for the chain on/off indication. The chain API functions are highly performance critical.
10:58 Changeset in rtems [fc521e2d]4.115 by Sebastian Huber <sebastian.huber@…>
posix: Use thread action for signals
10:55 Changeset in rtems [8061f56]4.115 by Sebastian Huber <sebastian.huber@…>
score: Delete post-switch API extensions Use thread post-switch actions instead.
10:53 Changeset in rtems [6fd1bdb7]4.115 by Sebastian Huber <sebastian.huber@…>
rtems: Use thread action for signals
10:50 Changeset in rtems [0dd732d]4.115 by Sebastian Huber <sebastian.huber@…>
score: Add thread actions Thread actions are the building block for efficient implementation of - Classic signals delivery, - POSIX signals delivery, - thread restart notification, - thread delete notification, - forced thread migration on SMP configurations, and - the Multiprocessor Resource Sharing Protocol (MrsP).
09:17 Changeset in rtems [a5ac9da]4.115 by Sebastian Huber <sebastian.huber@…>
score: Add and use thread get/set CPU functions
07:42 Changeset in rtems [ebb6a8d]4.115 by Sebastian Huber <sebastian.huber@…>
libchip: Include <bsp.h> BSP options definition
07:12 Ticket #1601 (USB stack port from FreeBSD 8.0) closed by Sebastian Huber
wontfix: USB support is now included in the libbsd: http://git.rtems.org/rtems-libbsd
03:11 GSoC edited by André Marques
/* Students' Proposals */ (diff)

03/13/14:

15:45 Changeset in rtems [9a8bf95b]4.115 by Sebastian Huber <sebastian.huber@…>
libchip: Check interrupt extension availability
15:41 Changeset in rtems [062f9532]4.115 by Sebastian Huber <sebastian.huber@…>
libchip: Avoid <bsp/utility.h>
15:03 Changeset in rtems [4d3e9334]4.115 by Sebastian Huber <sebastian.huber@…>
sapi: Typos
14:25 Changeset in rtems [fb7199d]4.115 by Sebastian Huber <sebastian.huber@…>
score: Relax Giant lock usage for API mutexes It is no longer necessary to protect the workspace allocations with the Giant lock due to the thread life cycle re-implementation.
14:21 Changeset in rtems [2a37016]4.115 by Daniel Cederman <cederman@…>
score: Add include for uintptr_t definition.
13:35 Changeset in rtems [e4b50853]4.115 by Daniel Cederman <cederman@…>
greth: Make local functions static, remove overflow and correct printf call.
13:33 Changeset in rtems [a46e02c7]4.115 by Daniel Cederman <cederman@…>
bsps/sparc: Make local functions static. The PCI and RASTA versions of the uart, spacewire and 1553 drivers directly includes the c-file of the standard versions of the drivers, but uses a macro to change the name of the driver register function. When the standard version is used this function should be global, when it is included as part of the PCI and RASTA versions it should be local and static.
13:28 Changeset in rtems [5130248e]4.115 by Daniel Cederman <cederman@…>
smc91111: Move driver attach prototype to header file. Also signal to compiler that the start variable in lan91cxx_recv is only used when debugging.
13:26 Changeset in rtems [3240325]4.115 by Daniel Cederman <cederman@…>
bsps/sparc: Change asm to asm to compile with -pedantic.
13:21 Changeset in rtems [f23bd591]4.115 by Daniel Cederman <cederman@…>
bsps/sparc: Make spurious trap handler function static.
13:13 Changeset in rtems [52f6502]4.115 by Daniel Cederman <cederman@…>
bsps/sparc: Add common gnat handler function prototype. Moved prototype for gnat_install_handler and gnat_install_handler_common to common header file. Placed header file in bsp namespace.
Note: See TracTimeline for information about the timeline view.