ViewVC Help
View Directory | Revision Log | View Changeset | Root Listing
root/src/trunk
r1297
File Last Change
 ../
kerberos5/ 6 (18 years ago) by laffer1: This commit was generated by cvs2svn to compensate for changes in r5, which included commits to RCS files with non-trunk default branches.
secure/ 256 (17 years ago) by laffer1: Add $MidnightBSD$ and the netbsd namespace hack.
tools/ 522 (17 years ago) by laffer1: Add option -w to specify graph width. Default width is terminal width. Fix the way the median is calculated. Obtained from FreeBSD 6.1 Release.
nrelease/ 1064 (16 years ago) by laffer1: Running md5 and sha256 is rather helpful.
release/ 1111 (16 years ago) by laffer1: We're making progress on transitioning off GNU cpio.
include/ 1125 (16 years ago) by laffer1: Don't install umap filesystem headers.
games/ 1153 (16 years ago) by laffer1: Forced commit to add: The changes in the randomize_fd.c are pretty simple: Basically in the older algorithm you had to walk thru the whole list element-by-element in order to reach an specific line and print it. This process is rather slow in big lists (big files :)), since it had to go all the way from the head of the list until it reached the element it randomly selected. The new algorithm only changes the way we access the elements, basically after the whole file is loaded up into the linked-list, we create an array of pointers to rand_node pointers, basically we walk over the whole list once (after the whole file is loaded into the list) and map each address into an array position (in the same order they were inserted on the list), after that whenever a random number is selected, we dont need to walk the whole list until we reach it, we simply rand_node_table[selected] it and get it in one move. If the unique option is used, after a rand_node_table[selected] gets visited we set it to NULL and if we reach that same slot afterwards, we simply go back and randomly select another number. Pretty simple. victor loureiro lima
bin/ 1198 (16 years ago) by laffer1: Connect mksh to build.
rescue/ 1216 (16 years ago) by laffer1: Add chown to rescue. It could be very handy. Remove alpha bits.
usr.sbin/ 1220 (16 years ago) by laffer1: periodic runs on saturdays (from Dragonfly). $MidnightBSD$
contrib/ 1236 (16 years ago) by ctriv: Notes for 3.4.2
libexec/ 1259 (16 years ago) by ctriv: Add usage and some basic argument checking.
usr.bin/ 1265 (16 years ago) by ctriv: Add bsdtar tests.
crypto/ 1267 (16 years ago) by laffer1: Fix a security issue with openssl. For applications using the SSL_get_shared_ciphers() function, the buffer overflow could allow an attacker to crash or potentially execute arbitrary code with the permissions of the user running the application. (freebsd advisory text).
sbin/ 1273 (16 years ago) by laffer1: newfs_msdos is very slow, especially when working with usb flash drives aka memory sticks. To speed things up, use 128KB chunks for I/O as they do on Mac OS X. This patch is based on some code contributed to the freebsd file system mailing list by Mark Day @ apple. I tested this on a Lexar 1GB stick that is only a few months old. Before the patch, newfs_msdos took about 2 minutes. Without the patch, the command returns nearly instantly. Obviously buffering is occuring. The file system seems to work fine, although I plan to do further testing.
sys/ 1274 (16 years ago) by laffer1: Add a device id for the 631xESB smbus controller.
share/ 1283 (16 years ago) by laffer1: Remove /usr/X11R6/bin as we're moving to X.org 7.3
etc/ 1289 (16 years ago) by laffer1: Enable powerd by default. Remove /usr/X11R6/rc.d search path as we're moving away from that with xorg 7
gnu/ 1293 (16 years ago) by laffer1: Disable _s.so file for now to unbreak world. This will need to be fixed to enable pcc.
lib/ 1297 (16 years ago) by laffer1: Remove libio as that was only for the alpha. I don't know why I added it in the previous revision. Also remove the files. $MidnightBSD$ libbz2 work around libarchive so the system compiles.
README 170 (17 years ago) by laffer1: Remove $FreeBSD$
COPYRIGHT 463 (17 years ago) by laffer1: Happy New Year.
Makefile 686 (17 years ago) by laffer1: Oops.. typo
Makefile.inc1 687 (17 years ago) by laffer1: Clean up
MAINTAINERS 1092 (16 years ago) by alex: pick up bin
UPDATING 1228 (16 years ago) by laffer1: Document mksh update and the changes to libpthread.
ObsoleteFiles.inc 1288 (16 years ago) by laffer1: Remove early.sh
20 directories and 7 files shown