Timeline



09/15/11:

17:09 Changeset in rtems [fdc70e2]4.115 by Joel Sherrill <joel.sherrill@…>
2011-09-15 Joel Sherrill <joel.sherrill@…> * score/include/rtems/score/thread.h: Ensure CBS builds with POSIX disabled.
15:58 Changeset in rtems [4b7e1fd]4.115 by Joel Sherrill <joel.sherrill@…>
2011-09-15 Joel Sherrill <joel.sherrill@…> * spcbssched01/Makefile.am, spcbssched02/Makefile.am, spcbssched03/Makefile.am: Formatting.
15:56 Changeset in rtems [bd1b8de]4.115 by Joel Sherrill <joel.sherrill@…>
2011-09-15 Petr Benes <benesp16@…> PR 1907/testing * Makefile.am, configure.ac: Add tests for the CBS (Constant Bandwidth Server) scheduler. * spcbssched01/.cvsignore, spcbssched01/Makefile.am, spcbssched01/init.c, spcbssched01/spcbssched01.doc, spcbssched01/spcbssched01.scn, spcbssched01/system.h, spcbssched01/task1.c, spcbssched02/.cvsignore, spcbssched02/Makefile.am, spcbssched02/init.c, spcbssched02/spcbssched02.doc, spcbssched02/spcbssched02.scn, spcbssched02/system.h, spcbssched02/task_periodic.c, spcbssched03/.cvsignore, spcbssched03/Makefile.am, spcbssched03/cbsparams.h, spcbssched03/init.c, spcbssched03/spcbssched03.doc, spcbssched03/spcbssched03.scn, spcbssched03/system.h, spcbssched03/tasks_aperiodic.c, spcbssched03/tasks_periodic.c: New files.
15:49 Changeset in rtems [82db8e56]4.115 by Joel Sherrill <joel.sherrill@…>
2011-09-15 Petr Benes <benesp16@…> PR 1906/cpukit * sapi/Makefile.am, sapi/preinstall.am, sapi/include/confdefs.h, score/Makefile.am, score/preinstall.am: Add the CBS (Constant Bandwidth Server) scheduler. This is a complex scheduling policy built atop of the EDF scheduler. Unlike other schedulers, this one provides a user API and handles not only deadlines of tasks but also claimed budget per period. The main aim of the scheduler is isolation of tasks so that each task is guaranteed to meet all deadlines regardless of how other tasks behave. * sapi/include/rtems/cbs.h, sapi/inline/rtems/cbs.inl, score/include/rtems/score/schedulercbs.h, score/src/schedulercbs.c, score/src/schedulercbsattachthread.c, score/src/schedulercbscleanup.c, score/src/schedulercbscreateserver.c, score/src/schedulercbsdestroyserver.c, score/src/schedulercbsdetachthread.c, score/src/schedulercbsgetapprovedbudget.c, score/src/schedulercbsgetexecutiontime.c, score/src/schedulercbsgetparameters.c, score/src/schedulercbsgetremainingbudget.c, score/src/schedulercbsgetserverid.c, score/src/schedulercbsreleasejob.c, score/src/schedulercbssetparameters.c, score/src/schedulercbsunblock.c: New files.
14:54 Ticket #1906 (CBS scheduler implementation) closed by Joel Sherrill
fixed: Merged with some warnings fixed. Thanks. Doxygen warning logs will show up in http://www.rtems.org/onlinedocs/doxygen/doxy.log. Doxygen is run every 12 hours (0630 and 1230 Huntsville time)
14:34 Changeset in rtems [baef6771]4.115 by Sebastian Huber <sebastian.huber@…>
2011-09-15 Sebastian Huber <sebastian.huber@…> * cpukit/libmisc/cpuuse/cpuuse.h, cpukit/libmisc/cpuuse/cpuusagedata.c, cpukit/libmisc/cpuuse/cpuusagereport.c, cpukit/libmisc/cpuuse/cpuusagereset.c: Fixed timestamp usage.

09/14/11:

14:25 Changeset in rtems [e41cec3]4.115 by Sebastian Huber <sebastian.huber@…>
2011-09-14 Sebastian Huber <sebastian.huber@…> * rtems/score/cpu.h: Request cache alignment and small data area in CPU_STRUCTURE_ALIGNMENT.
14:25 Ticket #1914 (Make timestamp implementation choice available for the CPU port) created by Sebastian Huber
In "score/include/rtems/score/timestamp.h" we have: /* * NOTE: …
14:16 Changeset in rtems [3f764a8]4.115 by Sebastian Huber <sebastian.huber@…>
2011-09-14 Sebastian Huber <sebastian.huber@…> PR 1898/cpukit * score/include/rtems/score/percpu.h: Use CPU_STRUCTURE_ALIGNMENT for _Per_CPU_Information.
13:17 Ticket #1898 (Optional CPU dependent _Per_CPU_Information attributes) closed by Sebastian Huber
fixed: Committed change above.
13:02 Changeset in rtems [b4e4f25]4.115 by Sebastian Huber <sebastian.huber@…>
2011-09-14 Sebastian Huber <sebastian.huber@…> * spnsext01/init.c: Use correct API.

09/13/11:

08:02 Ticket #1913 ([devFS] General review required) created by Sebastian Huber
In devfs_mknod.c: 1. Missing copyright information (only the license …

09/11/11:

20:57 Changeset in rtems [94f8cc0b]4.115 by Joel Sherrill <joel.sherrill@…>
2011-09-11 Joel Sherrill <joel.sherrill@…> * spedfsched01/Makefile.am, spedfsched02/Makefile.am, spedfsched03/Makefile.am: Use all managers.
20:56 Changeset in rtems [0d6aee4]4.115 by Joel Sherrill <joel.sherrill@…>
2011-09-11 Petr Benes <benesp16@…> PR 1897/testing * Makefile.am, configure.ac: Add tests for Earliest Deadline First (EDF) Scheduling Algorithm implementation. * spedfsched01/.cvsignore, spedfsched01/Makefile.am, spedfsched01/init.c, spedfsched01/spedfsched01.doc, spedfsched01/spedfsched01.scn, spedfsched01/system.h, spedfsched01/task1.c, spedfsched02/.cvsignore, spedfsched02/Makefile.am, spedfsched02/getall.c, spedfsched02/init.c, spedfsched02/spedfsched02.doc, spedfsched02/spedfsched02.scn, spedfsched02/system.h, spedfsched02/task1.c, spedfsched03/.cvsignore, spedfsched03/Makefile.am, spedfsched03/edfparams.h, spedfsched03/init.c, spedfsched03/spedfsched03.doc, spedfsched03/spedfsched03.scn, spedfsched03/system.h, spedfsched03/tasks_aperiodic.c, spedfsched03/tasks_periodic.c: New files.
20:52 Changeset in rtems [5472ad41]4.115 by Joel Sherrill <joel.sherrill@…>
2011-09-11 Petr Benes <benesp16@…> PR 1896/cpukit * sapi/include/confdefs.h, score/Makefile.am, score/preinstall.am: Add Earliest Deadline First (EDF) Scheduling Algorithm implementation. * score/include/rtems/score/scheduleredf.h, score/src/scheduleredf.c, score/src/scheduleredfallocate.c, score/src/scheduleredfblock.c, score/src/scheduleredfenqueue.c, score/src/scheduleredfenqueuefirst.c, score/src/scheduleredfextract.c, score/src/scheduleredffree.c, score/src/scheduleredfprioritycompare.c, score/src/scheduleredfreleasejob.c, score/src/scheduleredfschedule.c, score/src/scheduleredfunblock.c, score/src/scheduleredfupdate.c, score/src/scheduleredfyield.c: New files.
19:54 Ticket #1912 (Add Scheduler Documentation) created by Joel Sherrill
Gedare, Petr and I have discussed adding more documentation on the …

09/10/11:

14:22 Ticket #1726 (EDF Scheduling Implementation) closed by Gedare Bloom
wontfix: Superseded by Petr's EDF implementation.

09/09/11:

12:24 Changeset in rtems [72b7935]4.115 by Sebastian Huber <sebastian.huber@…>
2011-09-09 Sebastian Huber <sebastian.huber@…> * sp03/sp03.scn, sp05/sp05.scn, sp23/sp23.scn, sp27/sp27.scn, sp27a/sp27a.scn, sp39/sp39.scn: Update.
12:17 Changeset in rtems [1a6ab4e]4.115 by Sebastian Huber <sebastian.huber@…>
2011-09-09 Sebastian Huber <sebastian.huber@…> * sptests/sp68/init.c: Avoid CPU_STRUCTURE_ALIGNMENT.
11:25 Changeset in rtems [842394f]4.115 by Sebastian Huber <sebastian.huber@…>
2011-09-09 Sebastian Huber <sebastian.huber@…> PR 1901/cpukit * score/src/threadhandler.c: Do not use internal tasks for global initialization in MP configuration.
11:19 Changeset in rtems [fd1661f2]4.115 by Sebastian Huber <sebastian.huber@…>
2011-09-09 Sebastian Huber <sebastian.huber@…> PR 1844/cpukit * rtems/include/rtems/rtems/msgmp.h: Define MESSAGE_QUEUE_MP_PACKET_SIZE. * rtems/src/msgmp.c, rtems/src/msgqcreate.c: Use MESSAGE_QUEUE_MP_PACKET_SIZE.
11:04 Ticket #1911 (Include bsp.h in confdefs.h by default) created by Sebastian Huber
We should include <bsp.h> for the o BSP_IDLE_TASK_BODY, o …
11:02 Changeset in rtems [5817297]4.115 by Sebastian Huber <sebastian.huber@…>
2011-09-09 Sebastian Huber <sebastian.huber@…> PR 1873/cpukit * score/include/rtems/score/heap.h: Revert previous commit. * sapi/include/confdefs.h: Use proper constants in _Configure_From_workspace().
10:57 Changeset in rtems [d689de0]4.115 by Sebastian Huber <sebastian.huber@…>
2011-09-09 Sebastian Huber <sebastian.huber@…> * score/include/rtems/score/basedefs.h: Typo. * score/src/mpci.c, rtems/src/eventmp.c, rtems/src/msgmp.c, rtems/src/partmp.c, rtems/src/regionmp.c, rtems/src/semmp.c, rtems/src/signalmp.c, rtems/src/taskmp.c: Use RTEMS_STATIC_ASSERT() to ensure that the packet size is small enough.
10:25 Ticket #1901 (Global C++ constructors with MP configuration) closed by Sebastian Huber
fixed: Fixed on CVS head.
10:21 Ticket #1844 (Invalid MP packet prefix for message queues) closed by Sebastian Huber
fixed: I replaced the sizeof(Message_queue_MP_Packet) with #define MESSAGE_QUEUE_MP_PACKET_SIZE \ offsetof(Message_queue_MP_Packet, Buffer.buffer) this should fix the problem.
10:00 Changeset in rtems [f604a94]4.115 by Sebastian Huber <sebastian.huber@…>
2011-09-09 Sebastian Huber <sebastian.huber@…> * nios2-thread-dispatch-disabled.c: Use offsetof() instead of RTEMS_offsetof().

09/08/11:

08:58 Ticket #1910 (An option for architecture-specific SMP locks) created by Marta Rybczynska
This patch adds an option (in cpu.h) for architecture-specific SMP …

09/07/11:

07:43 Changeset in rtems [e5b2ed7]4.115 by Ralf Corsepius <ralf.corsepius@…>
2011-09-07 Ralf Corsépius <ralf.corsepius@…> * imfs_support/fs_supprot.h, support/fstest.h, support/ramdisk_support.h: Don't include config.h.
07:42 Changeset in rtems [d957805]4.115 by Ralf Corsepius <ralf.corsepius@…>
2011-09-07 Ralf Corsépius <ralf.corsepius@…> * fserror/test.c, fslink/test.c, fspatheval/test.c, fspermission/test.c, fsrdwr/init.c, fssymlink/test.c, fstime/test.c, support/fstest_support.c, support/ramdisk_support.c: Add config-header support.
07:39 Changeset in rtems [88e2a36]4.115 by Ralf Corsepius <ralf.corsepius@…>
2011-09-07 Ralf Corsépius <ralf.corsepius@…> * support/fstest.h: Include "pmacros.h".
07:32 Changeset in rtems [db6fbdf]4.115 by Ralf Corsepius <ralf.corsepius@…>
2011-09-07 Ralf Corsépius <ralf.corsepius@…> * fserror/fserror.doc, fserror/test.c, fslink/fslink.doc, fslink/test.c, fspatheval/patheval.doc, fspatheval/test.c, fspermission/fspermission.doc, fspermission/test.c, fsrdwr/fsrdwr.doc, fsrdwr/init.c, fssymlink/fssymlink.doc, fssymlink/test.c, fstime/fstime.doc, fstime/test.c, imfs_support/fs_config.h, imfs_support/fs_support.c, imfs_support/fs_supprot.h, mdosfs_support/fs_config.h, mdosfs_support/fs_support.c, mimfs_support/fs_config.h, mimfs_support/fs_support.c, mrfs_support/fs_config.h, mrfs_support/fs_support.c, support/fstest.h, support/fstest_support.c, support/fstest_support.h, support/ramdisk_support.c, support/ramdisk_support.h: Fix CVS-Ids.

09/05/11:

15:59 Changeset in rtems [4f7d002]4.115 by Ralf Corsepius <ralf.corsepius@…>
Regenerate.
15:55 Changeset in rtems [4390f3c9]4.115 by Ralf Corsepius <ralf.corsepius@…>
Bump GCC_RPMREL.
15:51 Changeset in rtems [ab143e91]4.115 by Ralf Corsepius <ralf.corsepius@…>
gcc-core-4.5.3-rtems4.11-20110905.diff, gcc-g++-4.5.3-rtems4.11-20110905.diff
15:46 Changeset in rtems [54c87d9]4.115 by Ralf Corsepius <ralf.corsepius@…>
New.
09:54 Changeset in rtems [3b9247e]4.115 by Sebastian Huber <sebastian.huber@…>
2011-09-05 Sebastian Huber <sebastian.huber@…> * spfatal01/spfatal01.scn, spfatal02/spfatal02.scn, spfatal13/spfatal13.scn, spfatal14/spfatal14.scn, spfatal15/spfatal15.scn, spfatal16/spfatal16.scn, spfatal17/spfatal17.scn, spfatal18/spfatal18.scn, spfatal19/spfatal19.scn, spfatal20/spfatal20.scn, spfatal_support/init.c: Print proper begin message.
09:49 Changeset in rtems [dc9f1a9]4.115 by Sebastian Huber <sebastian.huber@…>
2011-09-05 Sebastian Huber <sebastian.huber@…> * psxfatal01/psxfatal01.scn, psxfatal01/testcase.h, psxfatal02/psxfatal02.scn, psxfatal02/testcase.h, psxfatal_support/init.c: Print proper begin and end message.
06:16 Changeset in rtems [79fa247]4.115 by Ralf Corsepius <ralf.corsepius@…>
Restore bfin hacks.
04:07 Projects/CVStoGit edited by ChrisJohns
/* Phase 3 */ (diff)
04:05 Projects/CVStoGit edited by ChrisJohns
/* Public Access */ (diff)
04:02 Changeset in rtems [827a0d0]4.115 by Ralf Corsepius <ralf.corsepius@…>
Regenerate.
04:02 Changeset in rtems [406ac28b]4.115 by Ralf Corsepius <ralf.corsepius@…>
Fix typo
03:58 Projects/CVStoGit edited by ChrisJohns
Add phase 3. (diff)
03:48 Projects/CVStoGit edited by ChrisJohns
/* Phase 1 */ (diff)
03:47 Projects/CVStoGit edited by ChrisJohns
/* Phase 1 */ (diff)
03:46 Changeset in rtems [6587feaf]4.115 by Ralf Corsepius <ralf.corsepius@…>
New.
03:45 Projects/CVStoGit edited by ChrisJohns
/* Phase 1 */ (diff)
03:45 Changeset in rtems [e9aee68d]4.115 by Ralf Corsepius <ralf.corsepius@…>
Regenerate.
03:44 Projects/CVStoGit edited by ChrisJohns
/* Week 1 */ (diff)
03:39 Changeset in rtems [826eb30]4.115 by Ralf Corsepius <ralf.corsepius@…>
gdb-7.3.1

09/02/11:

15:06 Changeset in rtems [67518231]4.115 by Sebastian Huber <sebastian.huber@…>
2011-09-02 Sebastian Huber <sebastian.huber@…> * rtems/score/nios2-utility.h, nios2-isr-set-level.c, nios2-isr-get-level.c: Renamed functions.
13:41 Changeset in rtems [63f871f]4.115 by Sebastian Huber <sebastian.huber@…>
2011-09-02 Sebastian Huber <sebastian.huber@…> * stackchk/init.c, stackchk/system.h, stackchk/stackchk.scn: Print end of test message.
13:17 Changeset in rtems [0690fb28]4.115 by Sebastian Huber <sebastian.huber@…>
2011-09-02 Sebastian Huber <sebastian.huber@…> * libmisc/monitor/mon-monitor.c: Removed "exit" and "quit" commands to avoid confusion. They were an alias to the "fatal" command.
12:20 Changeset in rtems [1c0749b9]4.115 by Sebastian Huber <sebastian.huber@…>
2011-09-02 Sebastian Huber <sebastian.huber@…> * sp40/init.c: Avoid unsupported test cases.
11:20 Changeset in rtems [1c963169]4.115 by Sebastian Huber <sebastian.huber@…>
2011-09-02 Sebastian Huber <sebastian.huber@…> * rtems/score/nios2-utility.h: Use the same values for defines used by Altera HAL.
07:52 Changeset in rtems [36c187a0]4.115 by Sebastian Huber <sebastian.huber@…>
2011-09-02 Sebastian Huber <sebastian.huber@…> * rtems/score/nios2-utility.h: Avoid redefines with Altera HAL. Declare _Nios2_ISR_Set_level(). * nios2-context-initialize.c: Use _Nios2_ISR_Set_level(). * nios2-isr-set-level.c: Define _Nios2_ISR_Set_level().

09/01/11:

22:27 Release/4.10 edited by JoelSherrill
/* Release 4.10.2 Changes */ Add PR1895 Ensure partial ticks are accounted from ticks conversions. (diff)
21:34 Ticket #1909 (Covoar: displaying column Taken / Not taken counts in branch html report) closed by Joel Sherrill
fixed
21:26 Ticket #1909 (Covoar: displaying column Taken / Not taken counts in branch html report) created by Pawel
Added code displaying column with Taken / Not taken counts in the …
21:06 Ticket #1908 (QoS library for CBS scheduler) created by Petr Benes
Since the CBS scheduler is inspired by AQuoSA project for Linux, …
20:41 Ticket #1907 (CBS scheduler tests) created by Petr Benes
This patch contains three sptests for the CBS scheduler. First one is …
20:24 Ticket #1906 (CBS scheduler implementation) created by Petr Benes
The CBS (Constant Bandwidth Server) scheduler is a complex scheduling …
18:24 Changeset in rtems [a1bfb33]4.10 by Joel Sherrill <joel.sherrill@…>
2011-09-01 Joel Sherrill <joel.sherrilL@…> PR 1895/cpukit * posix/src/mqueuerecvsupp.c, posix/src/pthreadjoin.c, score/src/coretodmsecstoticks.c, score/src/coretodusectoticks.c, score/src/timespectoticks.c: Ensure time conversions to ticks do not ignore partial tick and return 1 less than desired.
18:24 Changeset in rtems [cae389ba]4.115 by Joel Sherrill <joel.sherrill@…>
2011-09-01 Joel Sherrill <joel.sherrilL@…> PR 1895/cpukit * score/src/coretodmsecstoticks.c, score/src/coretodusectoticks.c, score/src/timespectoticks.c: Ensure time conversions to ticks do not ignore partial tick and return 1 less than desired.
18:13 Changeset in rtems [ac9d2ecc]4.115 by Joel Sherrill <joel.sherrill@…>
2011-09-01 Petr Benes <benesp16@…> PR 1895/cpukit * rtems/src/ratemoncancel.c, rtems/src/ratemondelete.c, rtems/src/ratemonperiod.c, sapi/include/confdefs.h, score/Makefile.am, score/include/rtems/score/scheduler.h, score/include/rtems/score/schedulerpriority.h, score/include/rtems/score/schedulersimple.h, score/include/rtems/score/schedulersimplesmp.h, score/inline/rtems/score/scheduler.inl, score/inline/rtems/score/schedulerpriority.inl, score/src/coremutexseize.c: Add priority_compare and release_job hooks interfaces to scheduler interface. * score/src/schedulerpriorityprioritycompare.c, score/src/schedulerpriorityreleasejob.c: New files.
17:27 Ticket #1894 (missing a tick in _Timespec_To_ticks) closed by Joel Sherrill
fixed
17:14 Ticket #1895 (Pluggable scheduler priority_compare and release_job hooks) closed by Joel Sherrill
fixed: Committed. Closing. Thanks.
15:57 Changeset in rtems [900d9e66]4.115 by Sebastian Huber <sebastian.huber@…>
2011-09-01 Sebastian Huber <sebastian.huber@…> * startup/bspstart.c: Update due to API changes.
15:52 Changeset in rtems [e2d0c68]4.115 by Sebastian Huber <sebastian.huber@…>
2011-09-01 Sebastian Huber <sebastian.huber@…> * cpu.c, cpu_asm.S: Removed files. * nios2-context-initialize.c, nios2-context-switch.S, nios2-fatal-halt.c, nios2-initialize-vectors.c, nios2-initialize.c, nios2-isr-get-level.c, nios2-isr-install-raw-handler.c, nios2-isr-install-vector.c, nios2-isr-is-in-progress.c, nios2-isr-set-level.c, nios2-thread-dispatch-disabled.c, rtems/score/nios2-utility.h: New files. * Makefile.am, preinstall.am: Reflect changes above. * irq.c: Update due to API changes. * rtems/score/cpu.h: New functions _CPU_Initialize_vectors(), _CPU_ISR_Set_level(), and _CPU_Fatal_halt() (instead of macros). Support for external interrupt controller (EIC). Documentation changes.
11:07 Ticket #1900 (Covoar : adding backend calculating instructions execution count for ...) closed by Pawel
fixed: Closing this PR
09:25 Changeset in rtems [84649da]4.115 by Ralf Corsepius <ralf.corsepius@…>
Remove.
09:22 Changeset in rtems [0423216]4.115 by Ralf Corsepius <ralf.corsepius@…>
Regenerate.
09:20 Changeset in rtems [660912b9]4.115 by Ralf Corsepius <ralf.corsepius@…>
Bump GDB_RPMREL.
09:19 Changeset in rtems [6ca3e00]4.115 by Ralf Corsepius <ralf.corsepius@…>
Enable infos.
09:18 Changeset in rtems [7e83682]4.115 by Ralf Corsepius <ralf.corsepius@…>
Abandon gdb-7.1.
08:18 Changeset in rtems [df8204f]4.115 by Sebastian Huber <sebastian.huber@…>
2011-09-01 Sebastian Huber <sebastian.huber@…> * mpc55xx/include/fsl-mpc567x.h: Added FLASH as an alias to FLASH_A.
08:15 Changeset in rtems [3ac2bf5e]4.115 by Sebastian Huber <sebastian.huber@…>
2011-09-01 Sebastian Huber <sebastian.huber@…> * mpc55xx/include/fsl-mpc551x.h: Use legacy register naming.
08:09 Changeset in rtems [7a84689f]4.115 by Sebastian Huber <sebastian.huber@…>
2011-09-01 Sebastian Huber <sebastian.huber@…> * mpc55xx/include/fsl-mpc551x.h, mpc55xx/include/fsl-mpc556x.h, mpc55xx/include/fsl-mpc567x.h: Added missing FLASH types.
03:55 Changeset in rtems [ac620ef]4.115 by Ralf Corsepius <ralf.corsepius@…>
Regenerate.
03:54 Changeset in rtems [120adc24]4.115 by Ralf Corsepius <ralf.corsepius@…>
gdb-7.3
03:48 Changeset in rtems [d783a1e]4.115 by Ralf Corsepius <ralf.corsepius@…>
Move python into package specific subdir.
Note: See TracTimeline for information about the timeline view.