Timeline



05/15/12:

21:25 Changeset in network-demos [895dd99]4.11 by Joel Sherrill <joel.sherrill@…>
network-demos - Remove CVS Ids (manual edits)
21:23 Changeset in network-demos [af6a124]4.11 by Joel Sherrill <joel.sherrill@…>
network-demos - Remove CVS Ids (scripted)
14:25 Changeset in rtems [e37ed99c]4.115 by Sebastian Huber <sebastian.huber@…>
Filesystem: Add missing include file <stdint.h>
08:38 Changeset in rtems [1c0263c] by Sebastian Huber <sebastian.huber@…>
Merge branch 'upstream'
08:27 Changeset in rtems [0a95800a]4.115 by Sebastian Huber <sebastian.huber@…>
Filesystem: Change pathconf_limits_and_options The pathconf_limits_and_options field of rtems_filesystem_mount_table_entry_t is now a const pointer to reduce the read-write memory demands of file system instances.
08:06 Changeset in rtems [a7d1992c] by Sebastian Huber <sebastian.huber@…>
Merge branch 'upstream'
07:13 Ticket #1255 (filesystem not thread-safe) closed by Sebastian Huber
fixed: With this change http://git.rtems.org/rtems/commit/?id=53da07e436df21f078de665d90442ee5c7166ab7 the thread-safety is now a per file system issue.

05/14/12:

19:06 Release/4.10 edited by Sh
/* Release 4.10.3 Changes */ (diff)
14:55 Changeset in rtems [da154e14]4.115 by Sebastian Huber <sebastian.huber@…>
Filesystem: Move operations to mount table entry The scope of the file system operations is the file system instance. The scope of the file system node handlers is the file location. The benefit of moving the operations to the mount table entry is a size reduction of the file location (rtems_filesystem_location_info_t). The code size is slightly increased due to additional load instructions. Restructure rtems_filesystem_mount_table_entry_t to improve cache efficiency.
14:54 Changeset in rtems [fce1169]4.115 by Sebastian Huber <sebastian.huber@…>
dosfs: Remove unused parameter
14:53 Changeset in rtems [7666afc]4.115 by Sebastian Huber <sebastian.huber@…>
Filesystem: Add const qualifier to lock/unlock
13:21 Changeset in rtems [53da07e]4.115 by Sebastian Huber <sebastian.huber@…>
Filesystem: PR1255: Move offset update to handlers It is now the responsibility of the read() and write() handler to update the offset field of the IO descriptor (rtems_libio_t). This change makes it possible to protect the IO descriptor from concurrent access by per file locks.
13:19 Changeset in rtems [fed66f99]4.115 by Sebastian Huber <sebastian.huber@…>
Filesystem: Add shared device IO support The device IO file system support in IMFS, devFS, and RFS uses now a shared implementation.
13:07 Changeset in rtems [29192481]4.115 by Sebastian Huber <sebastian.huber@…>
devfs: C++ compatibility
11:16 Changeset in rtems [df01da67]4.115 by Sebastian Huber <sebastian.huber@…>
Filesystem: Use ioctl_command_t
11:13 Changeset in rtems [a1c6b96a]4.115 by Sebastian Huber <sebastian.huber@…>
rfs: Fix major and minor number integer types
10:13 Changeset in rtems [3c462734]4.115 by Sebastian Huber <sebastian.huber@…>
libblock: Fix purge device tree traversal
10:05 Changeset in rtems [811e4b9]4.10 by Sebastian Huber <sebastian.huber@…>
libblock: Fix purge device tree traversal
07:09 Changeset in rtems [52c0db28]4.115 by Sebastian Huber <sebastian.huber@…>
Filesystem: Remove duplicate prototype
07:06 Changeset in rtems [d5d071d] by Sebastian Huber <sebastian.huber@…>
Merge branch 'upstream'

05/13/12:

14:40 Changeset in rtems [2b36355b]4.115 by Gedare Bloom <gedare@…>
PR2065: RBTree: Insert function (protected) does not enable interrupts Save the return value from the unprotected version and return it after enabling interrupts to their previous level.
13:47 Ticket #2065 (RBTree: Insert function (protected) does not enable interrupts) closed by Gedare Bloom
fixed: http://git.rtems.org/rtems/commit/?id=2b36355b44e004c78872508a28f176fc1b146451
13:39 Ticket #2065 (RBTree: Insert function (protected) does not enable interrupts) created by Gedare Bloom
The Insert function fails to re-enable interrupts.

05/12/12:

16:12 Changeset in rtems [5f0cd34]4.115 by Joel Sherrill <joel.sherrill@…>
samples - Eliminate missing prototype warnings
16:01 Changeset in rtems [3c8eda7]4.115 by Joel Sherrill <joel.sherrill@…>
sptests - Eliminate missing prototype warnings

05/11/12:

19:12 Changeset in rtems [6c2de60]4.115 by Joel Sherrill <joel.sherrill@…>
psxtests - Eliminate missing prototype warnings
17:20 Changeset in rtems [4c86e3d]4.115 by Joel Sherrill <joel.sherrill@…>
libtmtests - Eliminate missing prototype warnings
14:25 Changeset in rtems [a03d4453]4.115 by Joel Sherrill <joel.sherrill@…>
tmoverhd - Eliminate warnings
14:15 Changeset in rtems [991a3cc1]4.115 by Joel Sherrill <joel.sherrill@…>
psxtmtests - Eliminate missing prototype warnings
13:59 Ticket #2064 (Switch arm-rtems default target name to EABI) created by Joel Sherrill
RTEMS PR to track http://gcc.gnu.org/bugzilla/show_bug.cgi?id=53325
13:33 Changeset in rtems [9ee5b97]4.115 by Joel Sherrill <joel.sherrill@…>
librtems++ - Remove junk line accidentally committed
12:18 Changeset in rtems [22506ae9] by Sebastian Huber <sebastian.huber@…>
Merge branch 'upstream'
11:23 Changeset in rtems [be366508]4.115 by Sebastian Huber <sebastian.huber@…>
fstests/fsrdwr: Fix assertions
11:22 Changeset in rtems [25f814c]4.115 by Sebastian Huber <sebastian.huber@…>
fstests/fsrdwr: Avoid copy and paste
11:19 Changeset in rtems [b16b0aa9]4.115 by Sebastian Huber <sebastian.huber@…>
fstests/fsrdwr: Add block read/write test case
11:19 Changeset in rtems [a26ea56d]4.115 by Sebastian Huber <sebastian.huber@…>
fstests/fsrdwr: Add truncate to zero test case
11:09 Ticket #1618 (Basic file system test) closed by Sebastian Huber
fixed: File system tests are now present.
11:04 Changeset in rtems [84ab4fce]4.115 by Sebastian Huber <sebastian.huber@…>
libblock: Add RTEMS_BLKIO_PURGEDEV
11:04 Ticket #1398 (seek with size beyond end, cause grow for readonly file) closed by Sebastian Huber
fixed: http://git.rtems.org/rtems/commit/?id=30d412469c930fe4150ad2b9a321eea2747ec6f4
11:02 Ticket #1871 (O_APPEND is broken for IMFS, DOSFS, and RFS) closed by Sebastian Huber
fixed: http://git.rtems.org/rtems/commit/?id=d61b0a5abfb00abf91ef281a89cb3984b5eef737
07:05 Changeset in rtems [1a05377] by Sebastian Huber <sebastian.huber@…>
Fix BSD sections

05/10/12:

21:15 Ticket #2063 (m32r-rtems does not provide crtinit.o and crtfini.o) created by Joel Sherrill
GCC PR and fix at http://gcc.gnu.org/bugzilla/show_bug.cgi?id=53314
16:17 Changeset in rtems [eb7c6a84]4.115 by Joel Sherrill <joel.sherrill@…>
pc386 - Clock driver compiles again plus clean up The clock drivers were very inconsistent about prototyping the ISR handlers. This broke with the recent clean up. Tested on qemu.
15:04 Changeset in rtems-libbsd [7586492]4.1155-freebsd-126-freebsd-12freebsd-9.3 by Jennifer Averett <jennifer.averett@…>
Added Nic status section to documention.
15:03 Changeset in rtems-libbsd [4f6cf1e]4.1155-freebsd-126-freebsd-12freebsd-9.3 by Sebastian Huber <sebastian.huber@…>
Use SYSINIT reference defines
15:03 Changeset in rtems-libbsd [06e6d19]4.1155-freebsd-126-freebsd-12freebsd-9.3 by Sebastian Huber <sebastian.huber@…>
Add SYSINIT reference defines
13:51 Changeset in rtems-libbsd [a4d8e19]4.1155-freebsd-126-freebsd-12freebsd-9.3 by Sebastian Huber <sebastian.huber@…>
Move rtems_bsd_thread0_ucred
13:06 Changeset in rtems-libbsd [ee6b343]4.1155-freebsd-126-freebsd-12freebsd-9.3 by Christian Mauderer <christian.mauderer@…>
Provide SWI(9) and TIMEOUT(9)
12:59 Changeset in rtems [79fee34]4.115 by Joel Sherrill <joel.sherrill@…>
clockdrv_shell.h - Fix commment
12:59 Changeset in rtems [153ef54]4.115 by Joel Sherrill <joel.sherrill@…>
clockdrv_shell.c - Remove unreferenced and obsolete file
12:27 Changeset in rtems [314fab55]4.115 by Joel Sherrill <joel.sherrill@…>
Clock Driver Shell - ISR handler prototype should follow port interrupt model The prototype for the clock driver tick isr varies based upon the interrupt model used by the port. This driver was checking solely upon a flag set by the BSP.
12:26 Changeset in rtems [42547e07]4.115 by Joel Sherrill <joel.sherrill@…>
nds - Clock driver compiles again
12:25 Changeset in rtems [4523829a]4.115 by Joel Sherrill <joel.sherrill@…>
nds/libnds - Fix missing prototype warning and formatting

05/09/12:

23:02 Changeset in rtems [890c55c7]4.115 by Joel Sherrill <joel.sherrill@…>
hurricane - Remove unused file setvec.c
18:55 Changeset in rtems-libbsd [b95c989]4.1155-freebsd-126-freebsd-12freebsd-9.3 by Jennifer Averett <jennifer.averett@…>
Added subr_unit.c needed for addtional Nics.
17:28 Changeset in rtems-libbsd [2dbdc7c]4.1155-freebsd-126-freebsd-12freebsd-9.3 by Jennifer Averett <jennifer.averett@…>
Added EtherExpress?, tulip, and Broadcom Nics. BCM570x, E1000, and Legacy Nics are commented out until pieces are added to get them to link.
15:07 Changeset in rtems [c424bb5]4.115 by Joel Sherrill <joel.sherrill@…>
librtems++ - Disable Interrupt Class When Not Simple Vectored This class only works on Simple Vectored Architectures. Even worse, it is not guaranteed to compile on a Programmable Interrupt Vector architecture.
12:33 Changeset in rtems [86ef0df]4.115 by Sebastian Huber <sebastian.huber@…>
dosfs: Remove fat_file_datasync() The fat_file_datasync() read every cluster of the file into the cache and then synchronized it step-by-step. For unmodified buffers this is a non-operation. For modified buffers this will wake-up the swapout task which performs then a single buffer write operation. This is usually quite inefficient. Firstly we do single buffer writes, secondly we may perform a lot of unnecessary read operations (for huge files this is really bad), and thirdly this leads likely to cache evictions. The synchronization procedure is replaced by a simple rtems_bdbuf_sync_dev(). This has the side-effect that also buffers not related to the file are synchronized, but since the modified list is normally short this should be acceptable.

05/08/12:

22:47 Changeset in rtems [883a02c]4.115 by Joel Sherrill <joel.sherrill@…>
score603e - Eliminate any set_vector() remnants
22:39 Changeset in rtems [16f0a50]4.115 by Joel Sherrill <joel.sherrill@…>
virtex4 - Eliminate any set_vector() remnants
22:35 Changeset in rtems [71d7e02]4.115 by Joel Sherrill <joel.sherrill@…>
virtex - Eliminate any set_vector() remnants
21:53 Changeset in rtems [1290a66]4.115 by Joel Sherrill <joel.sherrill@…>
mbx8xx - Eliminate any set_vector() remnants
21:43 Ticket #2060 (RBTree: updating min and max on extract path) closed by Gedare Bloom
fixed: Applied fix.
21:43 Ticket #2061 (RBTree: updating min and max on insert with duplicates) closed by Gedare Bloom
fixed: Applied fix.
21:39 Changeset in rtems [c100ba13]4.115 by Joel Sherrill <joel.sherrill@…>
spqreslib - Make global data extern in system.h Global data was declared in system.h but should have been extern in system.h and declared in init.c. There were duplicate symbol linking errors on at least powerpc/mpc8260ads.
18:39 Changeset in rtems [e7afbaa]4.115 by Joel Sherrill <joel.sherrill@…>
haleakala - Eliminate commented out code
18:36 Changeset in rtems [42dea0c]4.115 by Joel Sherrill <joel.sherrill@…>
mpc8260ads - Eliminate commented out code
18:36 Changeset in rtems [96ec7264]4.115 by Joel Sherrill <joel.sherrill@…>
mpc8260ads - Eliminate any set_vector() remnants
18:28 Changeset in rtems [6620a8a8]4.115 by Joel Sherrill <joel.sherrill@…>
malta - Eliminate any set_vector() remnants
18:27 Changeset in rtems [4302c08]4.115 by Joel Sherrill <joel.sherrill@…>
jmr3904 - Eliminate any set_vector() remnants
18:27 Changeset in rtems [87856609]4.115 by Joel Sherrill <joel.sherrill@…>
hurricane - Eliminate any set_vector() remnants
18:27 Changeset in rtems [aeb6a58]4.115 by Joel Sherrill <joel.sherrill@…>
genmongoosev - Eliminate any set_vector() remnants
18:26 Changeset in rtems [498b9e7d]4.115 by Joel Sherrill <joel.sherrill@…>
rbtx4925 - Eliminate any set_vector() remnants
18:26 Changeset in rtems [959a701]4.115 by Joel Sherrill <joel.sherrill@…>
rbtx4938 - Eliminate any set_vector() remnants
18:25 Changeset in rtems [541c5ddc]4.115 by Joel Sherrill <joel.sherrill@…>
csb350 - Eliminate any set_vector() remnants
14:29 Changeset in rtems-libbsd [5ab1e1d]4.1155-freebsd-126-freebsd-12freebsd-9.3 by Jennifer Averett <jennifer.averett@…>
Added documentation on rtems specific files.
14:14 Changeset in rtems-libbsd [8420b94]4.1155-freebsd-126-freebsd-12freebsd-9.3 by Jennifer Averett <jennifer.averett@…>
Modified copyright on rtems-bsd-xxx files to be consistant with FreeBSD copyright.

05/07/12:

23:29 Changeset in rtems [826fa6b1]4.115 by Joel Sherrill <joel.sherrill@…>
Score ISR - Minimize Capabilities When Not Simple Vectored In particular CPU_INTERRUPT_NUMBER_OF_VECTORS and CPU_INTERRUPT_MAXIMUM_VECTOR_NUMBER are only used on Simple Vectored Architectures, so do not depend on them being defined. This disables as much as possible that is specific to the Simple Vectored Model and not expected to be used on architectures which use the Programmable Interrupt Controller model for interrupt handler vectoring.
23:29 Changeset in rtems [2824e63]4.115 by Joel Sherrill <joel.sherrill@…>
Score Semaphore - Need Semaphore Seize Body When Multiprocessing is Enabled mptests did not link without this modification.
23:26 Changeset in rtems [a29909cb]4.115 by Joel Sherrill <joel.sherrill@…>
libchip/serial - Only use set_vector() on Simple Vectored Architectures
22:02 Changeset in rtems [19a3f50]4.115 by Joel Sherrill <joel.sherrill@…>
jmr3904 - Correct tm27.h to use PIC Interrupt Model
21:58 Changeset in rtems [dac3a526]4.115 by Joel Sherrill <joel.sherrill@…>
genmongoosev - Correct tm27.h to use PIC Interrupt Model
21:58 Changeset in rtems [c3e7313]4.115 by Joel Sherrill <joel.sherrill@…>
csb350 - Correct tm27.h to use PIC Interrupt Model
21:57 Changeset in rtems [865bffd1]4.115 by Joel Sherrill <joel.sherrill@…>
tm30 - Fix warning for Init needed prototype
16:08 Changeset in rtems [33a105fb]4.115 by Joel Sherrill <joel.sherrill@…>
Revert: Remove CVS Ids See http://www.rtems.org/pipermail/rtems-devel/2012-May/001006.html for details.
14:31 Changeset in rtems [3d0c96c7]4.115 by Sebastian Huber <sebastian.huber@…>
Filesystem: PR1893: Fix write and truncate handler Space that grows due to truncate or write offsets beyond the current file size must be zero filled.
14:30 Changeset in rtems [30d4124]4.115 by Sebastian Huber <sebastian.huber@…>
Filesystem: PR1398: Fix lseek() mechanic According to POSIX the lseek() function shall not, by itself, extend the size of a file. Remove the size field of rtems_libio_t. A file has only one size but may have multiple open file descriptors. Thus a file size field in the file descriptor may lead to inconsistencies. New default handlers rtems_filesystem_default_lseek_file() and rtems_filesystem_default_lseek_directory().
14:15 Changeset in rtems [d61b0a5]4.115 by Sebastian Huber <sebastian.huber@…>
Filesystem: PR1871: Fix O_APPEND
13:20 Ticket #2027 (lseek() mechanic is broken) closed by Sebastian Huber
duplicate: Duplicate.

05/06/12:

22:47 Changeset in rtems-tools [ec24a37]4.104.115 by Chris Johns <chrisj@…>
Add to git.

05/04/12:

20:14 Changeset in rtems [333a312]4.115 by Joel Sherrill <joel.sherrill@…>
samples/base_mp - Makefile.am did not set LINK_OBJS LINK_OBJS = instead of LINK_OBJS = $(mp01_node1_OBJECTS)
19:58 Changeset in rtems [48e02af]4.115 by Joel Sherrill <joel.sherrill@…>
mptests - Makefile.am did not set LINK_OBJS LINK_OBJS = instead of LINK_OBJS = $(mp01_node1_OBJECTS)
11:30 Changeset in rtems [6fe700c] by Sebastian Huber <sebastian.huber@…>
Merge branch 'upstream'
11:26 Changeset in rtems [2cd2ed3]4.115 by Sebastian Huber <sebastian.huber@…>
nfsclient: Add rename operation
10:46 Changeset in rtems [078369f]4.115 by Sebastian Huber <sebastian.huber@…>
nfsclient: Fix hard link operation
09:04 Changeset in rtems [7619a60] by Sebastian Huber <sebastian.huber@…>
Merge branch 'upstream'
08:48 Changeset in rtems [1747208]4.115 by Sebastian Huber <sebastian.huber@…>
Filesystem: Use proper parameter in NFS
07:29 Changeset in rtems [5f38f20d]4.115 by Ralf Corsépius <ralf.corsepius@…>
Remove.
07:04 Ticket #2062 (c/src/lib/libbsp/powerpc/qoriq/include/hwreg_vals.h is empty) created by Ralf Corsepius
The file c/src/lib/libbsp/powerpc/qoriq/include/hwreg_vals.h in git …
07:00 Changeset in rtems [27272db3]4.115 by Ralf Corsépius <ralf.corsepius@…>
Remove CVS-Ids.
06:58 Changeset in rtems [9847d61d]4.115 by Ralf Corsépius <ralf.corsepius@…>
Remove CVS-Ids.
06:58 Changeset in rtems [f8e57718]4.115 by Ralf Corsépius <ralf.corsepius@…>
Remove CVS-Ids.
06:57 Changeset in rtems [af981ca0]4.115 by Ralf Corsépius <ralf.corsepius@…>
Remove CVS-Ids.
06:56 Changeset in rtems [a53584c]4.115 by Ralf Corsépius <ralf.corsepius@…>
Remove CVS-Ids.
06:56 Changeset in rtems [8ebf3db4]4.115 by Ralf Corsépius <ralf.corsepius@…>
Remove CVS-Ids.
06:56 Changeset in rtems [d8ba99b]4.115 by Ralf Corsépius <ralf.corsepius@…>
Remove CVS-Ids.
06:56 Changeset in rtems [323d041]4.115 by Ralf Corsépius <ralf.corsepius@…>
Remove CVS-Ids.
06:56 Changeset in rtems [0b6bf2b]4.115 by Ralf Corsépius <ralf.corsepius@…>
Remove CVS-Ids.
06:55 Changeset in rtems [ee32f67a]4.115 by Ralf Corsépius <ralf.corsepius@…>
Remove CVS-Ids.
06:55 Changeset in rtems [0caef32f]4.115 by Ralf Corsépius <ralf.corsepius@…>
Remove CVS-Ids.
06:54 Changeset in rtems [fdc39c4]4.115 by Ralf Corsépius <ralf.corsepius@…>
Remove CVS-Ids.
06:54 Changeset in rtems [9f4e8fb]4.115 by Ralf Corsépius <ralf.corsepius@…>
Remove CVS-Ids.
06:54 Changeset in rtems [70f37198]4.115 by Ralf Corsépius <ralf.corsepius@…>
Remove CVS-Ids.
06:54 Changeset in rtems [2376237]4.115 by Ralf Corsépius <ralf.corsepius@…>
Remove CVS-Ids.
06:54 Changeset in rtems [4dec352]4.115 by Ralf Corsépius <ralf.corsepius@…>
Remove CVS-Ids.
06:54 Changeset in rtems [84b01905]4.115 by Ralf Corsépius <ralf.corsepius@…>
Remove CVS-Ids.
06:54 Changeset in rtems [67cad33e]4.115 by Ralf Corsépius <ralf.corsepius@…>
Remove CVS-Ids.
06:54 Changeset in rtems [27a345b]4.115 by Ralf Corsépius <ralf.corsepius@…>
Remove CVS-Ids.
06:54 Changeset in rtems [820d82ed]4.115 by Ralf Corsépius <ralf.corsepius@…>
Remove CVS-Ids.
06:54 Changeset in rtems [6a5e19cc]4.115 by Ralf Corsépius <ralf.corsepius@…>
Remove CVS-Ids.
06:53 Changeset in rtems [91d2e18]4.115 by Ralf Corsépius <ralf.corsepius@…>
Remove CVS-Ids.
06:52 Changeset in rtems [87b72d48]4.115 by Ralf Corsépius <ralf.corsepius@…>
Remove CVS-Ids.
06:52 Changeset in rtems [2ddb743]4.115 by Ralf Corsépius <ralf.corsepius@…>
Remove CVS-Ids.
06:52 Changeset in rtems [b2c6795e]4.115 by Ralf Corsépius <ralf.corsepius@…>
Remove CVS-Ids.
06:51 Changeset in rtems [bf8e316]4.115 by Ralf Corsépius <ralf.corsepius@…>
Remove CVS-Ids.
06:51 Changeset in rtems [63de9348]4.115 by Ralf Corsépius <ralf.corsepius@…>
Remove CVS-Ids.
06:51 Changeset in rtems [8cbe46c]4.115 by Ralf Corsépius <ralf.corsepius@…>
Remove CVS-Ids.
06:51 Changeset in rtems [f07bdc47]4.115 by Ralf Corsépius <ralf.corsepius@…>
Remove CVS-Ids.
06:51 Changeset in rtems [a98262d8]4.115 by Ralf Corsépius <ralf.corsepius@…>
Remove CVS-Ids.
06:51 Changeset in rtems [6b75160]4.115 by Ralf Corsépius <ralf.corsepius@…>
Remove CVS-Ids.
06:51 Changeset in rtems [d5b87d0]4.115 by Ralf Corsépius <ralf.corsepius@…>
Remove CVS-Ids.
06:51 Changeset in rtems [3a3ee55a]4.115 by Ralf Corsépius <ralf.corsepius@…>
Remove CVS-Ids.
06:51 Changeset in rtems [b5a076d]4.115 by Ralf Corsépius <ralf.corsepius@…>
Remove CVS-Ids.
06:51 Changeset in rtems [98506859]4.115 by Ralf Corsépius <ralf.corsepius@…>
Remove CVS-Ids.
06:51 Changeset in rtems [15c1978c]4.115 by Ralf Corsépius <ralf.corsepius@…>
Remove CVS-Ids.
06:51 Changeset in rtems [a049ca0f]4.115 by Ralf Corsépius <ralf.corsepius@…>
Remove CVS-Ids.
06:51 Changeset in rtems [bc1d729]4.115 by Ralf Corsépius <ralf.corsepius@…>
Remove CVS-Ids.
06:51 Changeset in rtems [bd38feab]4.115 by Ralf Corsépius <ralf.corsepius@…>
Remove CVS-Ids.
06:51 Changeset in rtems [a7e6c27d]4.115 by Ralf Corsépius <ralf.corsepius@…>
Remove CVS-Ids.
06:51 Changeset in rtems [2f54f8d5]4.115 by Ralf Corsépius <ralf.corsepius@…>
Remove CVS-Ids.
06:51 Changeset in rtems [c30045f]4.115 by Ralf Corsépius <ralf.corsepius@…>
Remove CVS-Ids.
06:51 Changeset in rtems [f7d50ed8]4.115 by Ralf Corsépius <ralf.corsepius@…>
Remove CVS-Ids.
06:51 Changeset in rtems [e30165d]4.115 by Ralf Corsépius <ralf.corsepius@…>
Remove CVS-Ids.
06:51 Changeset in rtems [1a749270]4.115 by Ralf Corsépius <ralf.corsepius@…>
Remove CVS-Ids.
06:51 Changeset in rtems [3ef7c91f]4.115 by Ralf Corsépius <ralf.corsepius@…>
Remove CVS-Ids.
06:51 Changeset in rtems [f901b51]4.115 by Ralf Corsépius <ralf.corsepius@…>
Remove CVS-Ids.
06:51 Changeset in rtems [1559075]4.115 by Ralf Corsépius <ralf.corsepius@…>
Remove CVS-Ids.
06:51 Changeset in rtems [8e25311]4.115 by Ralf Corsépius <ralf.corsepius@…>
Remove CVS-Ids.
06:51 Changeset in rtems [8f739916]4.115 by Ralf Corsépius <ralf.corsepius@…>
Remove CVS-Ids.
06:51 Changeset in rtems [c559cba]4.115 by Ralf Corsépius <ralf.corsepius@…>
Remove CVS-Ids.
06:51 Changeset in rtems [d31c6d3]4.115 by Ralf Corsépius <ralf.corsepius@…>
Remove CVS-Ids.

05/03/12:

22:14 Changeset in rtems [ae55da72]4.115 by Joel Sherrill <joel.sherrill@…>
cpukit/aclocal - Fix one mistake by script
19:17 Changeset in rtems [183af89]4.115 by Joel Sherrill <joel.sherrill@…>
Miscellaneous - Clean up file headers so patterns followed XXX
19:13 Changeset in rtems [fe530231]4.115 by Joel Sherrill <joel.sherrill@…>
nds/linkcmds - Remove execute permission
19:05 Developer/Git/Committers edited by JoelSherrill
/* Committing */ co not valid - use checkout (diff)
18:23 Changeset in rtems [78dea6ce]4.115 by Joel Sherrill <joel.sherrill@…>
libcpu misc m68k and sh - Correct formatting and remove weird Id strings
17:55 Changeset in rtems [cfaa366]4.115 by Joel Sherrill <joel.sherrill@…>
General - Remove extraneous blank line in license message Many files had an extra blank line in the license text found in the file header. This patch removes that line. * The license and distribution terms for this file may be * found in the file LICENSE in this distribution or at * * http://www.rtems.com/license/LICENSE. The script that did this also turned off execute permission when it was turned on incorrectly.
17:46 Changeset in rtems [358522d]4.115 by Joel Sherrill <joel.sherrill@…>
Libcpu misc files - Remove execute permission on source files.
17:31 Changeset in rtems [85b079e]4.115 by Joel Sherrill <joel.sherrill@…>
rtems-message_queue.adb - Convert DOS to UNIX CF/LF
17:24 Changeset in rtems [65c6425]4.115 by Joel Sherrill <joel.sherrill@…>
Remove CVS Id Strings (manual edits after script) These modifications were required by hand after running the script. In some cases, the file names did not match patterns. In others, the format of the file did not match any common patterns.
16:43 Changeset in rtems [f53aa8d]4.115 by Gedare Bloom <gedare@…>
rbtree: API changes. Remove rbtree control node from RBTree_Next. The implementation of RBTree_Next was using an awkward construction to detect and avoid accessing the false root of the red-black tree. To deal with the false root, RBTree_Next was comparing node parents with the control node. Instead the false root can be detected by checking if the grandparent of a node exists; the grandparent of the tree's true root is NULL by definition so the root of the tree is found while walking up the tree by checking for the non-existence of a grandparent. This change propagates into the predecessor/successor and iterate functions.
15:09 Changeset in rtems [9b4422a2]4.115 by Joel Sherrill <joel.sherrill@…>
Remove All CVS Id Strings Possible Using a Script Script does what is expected and tries to do it as smartly as possible. + remove occurrences of two blank comment lines next to each other after Id string line removed. + remove entire comment blocks which only exited to contain CVS Ids + If the processing left a blank line at the top of a file, it was removed.
15:03 Changeset in rtems [9f6ea32]4.115 by Joel Sherrill <joel.sherrill@…>
psxaio01/psxaio02 - Formatting corrections The file header was moved over one space. These two were the only files in the testsuite which did this.
14:41 Changeset in rtems [604405d8]4.115 by Joel Sherrill <joel.sherrill@…>
sp07/buffered_io.c add missing copyright Date and ownership determined from file history.

05/02/12:

19:23 Changeset in rtems [a41950dd]4.115 by Gedare Bloom <gedare@…>
PR2061: RBTree: updating min and max on insert with duplicates When inserting to a red-black tree with duplicates the min and max pointers are not updated properly. We need to check the key of the min/max node against the insert node since the insert point could be the child of a node with an identical key to the min/max node.
19:23 Changeset in rtems [07896ad5]4.115 by Joel Sherrill <joel.sherrill@…>
smdk2410 - Remove odd $Id$
19:23 Changeset in rtems [560dbd68]4.115 by Joel Sherrill <joel.sherrill@…>
gp32 - Remove odd $Id$
19:22 Changeset in rtems [0089173]4.115 by Joel Sherrill <joel.sherrill@…>
pc386 - Remove odd $Id$
19:21 Changeset in rtems [853ab2b]4.115 by Joel Sherrill <joel.sherrill@…>
libchip hcms29xx - Remove odd $Id$ and clean up file header
19:17 Changeset in rtems [2039926]4.115 by Joel Sherrill <joel.sherrill@…>
score603e - Remove bad $Id$ and clean up file header
19:16 Changeset in rtems [b8b2f19]4.115 by Joel Sherrill <joel.sherrill@…>
libcpu/m68k/mcf532x - Remove bad $Id$ and clean up file header
19:16 Changeset in rtems [2698728]4.115 by Joel Sherrill <joel.sherrill@…>
libchip z85c30 - Remove bad $Id$ and clean up file header
19:13 Changeset in rtems [2579e53]4.115 by Joel Sherrill <joel.sherrill@…>
LEON3 - Remove bad $Id$ and clean up file header
19:13 Changeset in rtems [1e7ee71]4.115 by Joel Sherrill <joel.sherrill@…>
LEON2 - Remove bad $Id$ and clean up file header
19:12 Changeset in rtems [70f5ab38]4.115 by Joel Sherrill <joel.sherrill@…>
MRM332 - Remove incorrect $Id$ string and correct file header
19:04 Changeset in rtems [3d74da6]4.115 by Gedare Bloom <gedare@…>
PR2060: RBTree: updating min and max on extract path During node extraction from a red-black tree the min and max values are updated incorrectly. We need to use the successor/predecessor functions to find the next/previous node when we remove the min/max from the tree.
18:23 Ticket #2061 (RBTree: updating min and max on insert with duplicates) created by Gedare Bloom
When inserting to a red-black tree with duplicates the min and max …
18:03 Ticket #2060 (RBTree: updating min and max on extract path) created by Gedare Bloom
During node extraction from a red-black tree the min and max values …
17:37 Release/4.10 edited by Sh
/* Release 4.10.3 Changes */ (diff)
17:35 Release/4.10 edited by Sh
/* Release 4.10.0 Changes */ (diff)
16:15 Changeset in rtems [0f31ec5d]4.115 by Gedare Bloom <gedare@…>
score/rbtree: eliminate unused function _RBTree_Peek.
16:10 Changeset in rtems [8572752]4.115 by Gedare Bloom <gedare@…>
rbtree: API Changes Make default for rtems_rbtree functions be unprotected (preemption enabled) unless an unprotected variant e.g. rtems_rbtree_xxx_unprotected is available.
15:27 Changeset in rtems-libbsd [be8032d]4.1155-freebsd-126-freebsd-12freebsd-9.3 by Jennifer Averett <jennifer.averett@…>
Added stubs for funsetown() and fsetown()
15:13 Changeset in rtems [8712622]4.115 by Gedare Bloom <gedare@…>
score/rbtree: replace _RBTree_Peek_unprotected with _RBTree_First.
15:06 Changeset in rtems [bc96bad6]4.115 by Gedare Bloom <gedare@…>
score/scheduling: Use RBTree_First instead of Peek in EDF scheduler.
14:17 Ticket #2059 (doc: Need documentation for Red-Black Trees.) created by Gedare Bloom
The RTEMS Manuals are missing documentation on the public API for the …

05/01/12:

18:52 Changeset in rtems-libbsd [73a8881]4.1155-freebsd-126-freebsd-12freebsd-9.3 by Jennifer Averett <jennifer.averett@…>
Added rtems_bsd_thread0_ucred as a single global ucred.
18:12 Changeset in rtems-libbsd [c1dd641]4.1155-freebsd-126-freebsd-12freebsd-9.3 by Jennifer Averett <jennifer.averett@…>
Added a define of 0 for bootverbose.
18:10 Changeset in rtems-libbsd [a51d36d2]4.1155-freebsd-126-freebsd-12freebsd-9.3 by Jennifer Averett <jennifer.averett@…>
Added globals for hints and hintmode.
18:08 Changeset in rtems-libbsd [e957846]4.1155-freebsd-126-freebsd-12freebsd-9.3 by Jennifer Averett <jennifer.averett@…>
Modifed sleep queue to be priority based and added the wakeup_one method.
Note: See TracTimeline for information about the timeline view.