ViewVC Help
View Directory | Revision Log | View Changeset | Root Listing
root/src/trunk
r2388
File Last Change
 ../
bin/ 2024 (15 years ago) by laffer1: bsd.own.mk time
cddl/ 2006 (15 years ago) by laffer1: $MidnightBSD$, fix paths
contrib/ 2385 (15 years ago) by laffer1: switch to defined(__MidnightBSD__) checks
crypto/ 1993 (15 years ago) by laffer1: Alright my approach was flawed. I can just define that we've got some of these functions now in config.h (from the new OpenSSL)
etc/ 2372 (15 years ago) by laffer1: add atrun
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
gnu/ 2000 (15 years ago) by laffer1: Partially migrate to the new method
include/ 1958 (15 years ago) by laffer1: Merge changes.
kerberos5/ 2375 (15 years ago) by laffer1: remove freebsd checks
lib/ 2374 (15 years ago) by laffer1: stdint should always be set
libexec/ 2112 (15 years ago) by laffer1: Remove unsupported arch
nrelease/ 1817 (15 years ago) by laffer1: Add iso2img script. Allows you to convert an install ISO to a flash friendly image. This is under the beerware license.
release/ 1793 (15 years ago) by laffer1: Switch to 3 disc iso setup like 0.2.1
rescue/ 2007 (15 years ago) by laffer1: Modernize rescue
sbin/ 2135 (15 years ago) by laffer1: This commit was generated by cvs2svn to compensate for changes in r2134, which included commits to RCS files with non-trunk default branches.
secure/ 1976 (15 years ago) by laffer1: Merge changes.
share/ 2298 (15 years ago) by laffer1: Remove sab(4) as it will be replaced by scc
sys/ 2388 (15 years ago) by laffer1: work in progress.. add __MidnightBSD__ checks in the code
tools/ 1990 (15 years ago) by laffer1: This commit was generated by cvs2svn to compensate for changes in r1989, which included commits to RCS files with non-trunk default branches.
usr.bin/ 2382 (15 years ago) by laffer1: Add -c flag to produce concise output for scripting use
usr.sbin/ 2365 (15 years ago) by laffer1: $MidnightBSD$
COPYRIGHT 1704 (15 years ago) by laffer1: Use correct date syntax for copyrights. I'm not certain on the legality of using the project name there. I've heard mixed things. We'll stick with this until we can find out.
MAINTAINERS 1753 (15 years ago) by laffer1: remove the freebsd develpers from the maintainer list. We're on our own. We should adjust the various src tree MAINTAINER areas eventually.
Makefile 1925 (15 years ago) by laffer1: add showconfig target. cleanup target option for kernel builds. adjust list of targets.
Makefile.inc1 1926 (15 years ago) by laffer1: deal with the ncurses issue and the order things are built. Prepare to go forward with gcc update (part one of many)
ObsoleteFiles.inc 2369 (15 years ago) by laffer1: We no longer need usbd
README 170 (17 years ago) by laffer1: Remove $FreeBSD$
UPDATING 2360 (15 years ago) by laffer1: Explain the progress we've made in the last few months. Still more to do.
21 directories and 7 files shown