summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
1998-08-21strengthen suspicious(); jmcdonal@unf.eduTheo de Raadt
1998-08-21Add struct cd_sub_channel_q_data for CD_SUBQ_DATA; msaitohTheo de Raadt
(note: disgusting bitfields)
1998-08-21correct readlink(); kleinkTheo de Raadt
1998-08-21I committed the wrong version before, here is the correct oneTodd C. Miller
1998-08-21Recent FreeBSD changes and a bug fix.Jason Downs
1998-08-21oops, remove debugging infoTodd C. Miller
1998-08-21For a.out use read, not mmap, to get the string table so this works onTodd C. Miller
/dev/ksyms. mmap was only used because, at the time, free did not give memory back to the system (our malloc/free uses mmap/munmap so we are ok).
1998-08-21Changes to work with /dev/ksyms:Todd C. Miller
o If we are have no data segment and text seg is __LDPGSZ, we must be /dev/ksyms or an equivalent so use sysctl to get version string. o fix an int vs. long issue and prepend '_' to symbols that lack one (alpha for instance).
1998-08-21decrypt the input _before_ checking if it is \n, not _after_.Artur Grabowski
1998-08-21mention that madvise() is not yet implementedTodd C. Miller
1998-08-21document MAP_COPYTodd C. Miller
1998-08-21support "-o field" and the interactive "o" commandkstailey
1998-08-21Add Debugger prototype for gcc nit picking; garnett@cs.colorado.eduTodd C. Miller
1998-08-21when checking for lib depends on the alpha (no shared libs)Marco S Hyman
check /usr/local/lib and /usr/X11R6/lib in addition to the standard place
1998-08-21oopsTheo de Raadt
1998-08-20add -q flag to silent messages of the type:Marco S Hyman
missing: some-file-name (not created: File exists) which occurred of some-file-name was a path that contained a symbolic link
1998-08-20avoid double fault during early boot; rvbTheo de Raadt
1998-08-20clear IMAXBEL bit; msaitohTheo de Raadt
1998-08-20typo; msaitohTheo de Raadt
1998-08-20some pmap definitionsMichael Shalayeff
1998-08-20some cmu/osf-derived pmap, hacked all overMichael Shalayeff
1998-08-20mmap support for gus, dillema@acm.orgNiels Provos
1998-08-20add dhcpd.* to makefileOleg Safiullin
1998-08-20If there are no SFILES, don't try to .depend them; run over by: ↵Jason Wright
emory@hellyeah.com
1998-08-20ecoff support, based on libc/gen/nlist.cTodd C. Miller
1998-08-19union sigval; garnett@cs.colorado.eduTodd C. Miller
1998-08-19please gcc 2.8Todd C. Miller
1998-08-19Change fxdr_hyper to return a u_quad_t. This minimizes the evil clobberingConstantine Sapuntzakis
of lvalues that ANSI abhors. And it fixes df on NFS version 3 mounts on Sparcs.
1998-08-19Don't print 'unknown dbopen() error' when kvm_bsd.db doesn't existTodd C. Miller
Print sane error message when __fdnlist() fails
1998-08-19don't print 'unknown dbopen() error' when kvm_bsd.db doesn't existTodd C. Miller
1998-08-19realloc fixTheo de Raadt
1998-08-19buf oflows; reported by felix@schlund.de but fixed by me because he did not ↵Theo de Raadt
send in a patch
1998-08-19use correct upper boundNiels Provos
1998-08-19print spaces correctly when input is on the command linePaul Janzen
1998-08-19minor tidying, and a fix to rot13's command line behaviourPaul Janzen
1998-08-19clean up our temp files on failureTodd C. Miller
1998-08-19tags, formatting, ANSI-fication, prototypes, de-typos, and the occasionalPaul Janzen
initialization, removal of unused variable, or other minor fix. Most changes are from or inspired by NetBSD.
1998-08-19Make kvm_mkdb work againTodd C. Miller
o testdb() needs to take as an arg the name of the kernel so it can do the version test correctly. o add undocumented verbose flag to tell when we are rebuilding the .db file o DO_* -> _NLIST_DO_*, this prevented kvm_mkdb from doing anything at all. o preserve a few error messages so you get error output when none of the exec types match the target. o check malloc return values o get_kerntext should not subtract the sizeof(struct exec) from kernel_text
1998-08-19Don't segfault in small windowsPaul Janzen
1998-08-19commasPaul Janzen
1998-08-19make errors unsignedTheo de Raadt
1998-08-19dhcpd: start from rc, controlled by rc.conf; sample config filesOleg Safiullin
1998-08-19build that man page tooTheo de Raadt
1998-08-18allow flags to be passed to apmd at millert's requestMarco S Hyman
1998-08-18bye bye old compatsTheo de Raadt
1998-08-18start apmd in rc, controlled by rc.confMarco S Hyman
1998-08-18people who fail to update man pages and usage lines will henceforth be shot ↵Theo de Raadt
on sight
1998-08-18wrong, smurphTheo de Raadt
1998-08-18halt processor when idle if either APM is enabled or PCTR is not enabled;Marco S Hyman
my idle portable: approx 320000 instructions per second my portable during a make build: as high as 21000000 instructions per second
1998-08-18add powerpc_btop() and powerpc_ptob() macros for consistency with other portsTodd C. Miller