ViewVC Help
View Directory | Revision Log | View Changeset | Root Listing
root/src/trunk
r1632
File Last Change
 ../
bin/ 1472 (16 years ago) by laffer1: FIx for r33d
contrib/ 1621 (15 years ago) by laffer1: Fix warning
crypto/ 1595 (15 years ago) by laffer1: Add the blacklists.
etc/ 1596 (15 years ago) by laffer1: (needs more testing) Create a ssh subdirectory and alter the ssh config installation so that it runs in it's own Makefile. This let's us deal with the new blacklist files in a easy fashion.
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/ 1418 (16 years ago) by laffer1: Add some newer OS releases for DF and FBSD.
include/ 1125 (16 years ago) by laffer1: Don't install umap filesystem headers.
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.
lib/ 1608 (15 years ago) by laffer1: Add kld_load and kld_isloaded which are wrappers around some of the kld kernel functions. See kld(3)
libexec/ 1504 (16 years ago) by ctriv: add mport.query tool.
nrelease/ 1632 (15 years ago) by laffer1: Let's get the dumb script running.
release/ 1111 (16 years ago) by laffer1: We're making progress on transitioning off GNU cpio.
rescue/ 1216 (16 years ago) by laffer1: Add chown to rescue. It could be very handy. Remove alpha bits.
sbin/ 1466 (16 years ago) by laffer1: Don't leak memory #2
secure/ 1594 (15 years ago) by laffer1: Add ssh-vulnkey.
share/ 1557 (16 years ago) by laffer1: We don't have alpha and pc98.
sys/ 1619 (15 years ago) by laffer1: apparently we're still setting this and i need to find a reason, but unbreak the world.
tools/ 1548 (16 years ago) by laffer1: Remove pcvt
usr.bin/ 1588 (15 years ago) by laffer1: We need to modify cc to use the ccom with the machine architecture. Unti then, unbreak pcc.
usr.sbin/ 1609 (15 years ago) by laffer1: $MidnightBSD$ - Prefer clock_gettime(2) over gettimeofday(2) and use CLOCK_MONOTONIC as it is only used to track elapsed time.[1] - Fix compiler warnings and style(9) bugs. consume kld_isloaded(3). Fix a (very) longstanding bug in moused(8) affecting high-resolution rodents when linear acceleration (-a) was enabled with a <1 value to slow them down. Previously, rounding errors would eat small movements so the mouse had to be moved a certain distance to get any movement at all. We now calculate the rounding errors and take them into account when reporting movement. Add dynamic acceleration to moused(8). This introduces a '-A' flag to control the acceleration algorithm. It can be used together with the '-a' flag for regular acceleration. [1] Convert macros to use C99's syntax for macros with a variable number of arguments. Markup fixes to moused(8). Obtained from: FreeBSD
COPYRIGHT 1363 (16 years ago) by laffer1: Happy New Year
MAINTAINERS 1433 (16 years ago) by laffer1: alex isn't with us anymore reset this.
Makefile 686 (17 years ago) by laffer1: Oops.. typo
Makefile.inc1 1551 (16 years ago) by laffer1: Fix the dreaded libpthread.a is missing crap with bind. libthr and libpthread are both built now (so sparc64 and i386/amd64 work). Remove pcvt reference since I deleted that last night. Remove some directories that we don't need to go through to speed up the build.
ObsoleteFiles.inc 1288 (16 years ago) by laffer1: Remove early.sh
README 170 (17 years ago) by laffer1: Remove $FreeBSD$
UPDATING 1598 (15 years ago) by laffer1: Explain the pcc, elf, ssh-vulnkey + blacklists changes.
20 directories and 7 files shown