Age | Commit message (Collapse) | Author | |
---|---|---|---|
2003-05-02 | Add Doug Gwyn's portable alloca() for platforms w/o an assembler | Todd C. Miller | |
version. Normally, gcc provides its own alloca() (unless -fno-builtin is specified). The C version is decidedly suboptimal--we really need proper assembler versions but this will work as a stop-gap measure. | |||
2003-05-01 | don't cast pointer to integer, use intptr_t stuff off inttypes.h instead | Peter Valchev | |
ok millert | |||
2003-05-01 | Enable compiler warning options but NOT -Werror | Marco S Hyman | |
2003-05-01 | is -Wall clean by making rcsid const | Anil Madhavapeddy | |
2003-05-01 | -Wall cleanup, make rcsid variables const | Anil Madhavapeddy | |
millert@ ok | |||
2003-05-01 | add missing enumeration case to select to kill gcc warning | Anil Madhavapeddy | |
millert@ ok | |||
2003-05-01 | typos; | Jason McIntyre | |
2003-05-01 | typos; | Jason McIntyre | |
ok itojun@ | |||
2003-05-01 | typos; | Jason McIntyre | |
ok jakob@ | |||
2003-04-30 | fix for pr# 3179 and 3238. Patch verified by author of 3179. | Marco S Hyman | |
2003-04-30 | a extended -> an extended; | Jason McIntyre | |
2003-04-30 | typos; | Jason McIntyre | |
2003-04-30 | removed unused .Bd macro; | Jason McIntyre | |
ok jason@ | |||
2003-04-29 | remove printf from static dlctl and dlerror stubs. Return -1 if | Marco S Hyman | |
dlctl called from a static prog. dlerror will display the proper error in if also called. -1 return suggested by drahn@ general ok from several others | |||
2003-04-28 | Change mquery() function call signature to be the same a mmap(). It | Dale Rahn | |
needs the prot/flags info and passing the addresses via arg/return allows it to be traced via ktrace better than an in/out paramter. This adds a new mquery syscall and renames the old one to omquery. New kernel _MUST_ be built, booted, and 'make includes' before building ld.so with this change. | |||
2003-04-28 | fix skeygetnext() | Todd C. Miller | |
2003-04-26 | string cleaning; ok tedu | Theo de Raadt | |
2003-04-26 | managment -> management; | Jason McIntyre | |
ok mickey@ | |||
2003-04-25 | Remove note about POLLMSG. not used and not provided. ok millert@ | Ted Unangst | |
2003-04-25 | Make function declaration and man page match prototype. Closes PR 3236 | Todd C. Miller | |
2003-04-25 | backout mquery change, something broke when not combined with a different diff. | Dale Rahn | |
2003-04-25 | Document hw.sensors | Alexander Yurchenko | |
2003-04-25 | always widen the imputed netmask if it is narrower than the specified octets. | Henning Brauer | |
fixes a strange behaviour where inet_net_pton would always return 4 (bits) for multicast addresses no matter how many octets were specified. negotiated with Paul Vixie, original author of this function. ok millert@ | |||
2003-04-25 | Document changes to mquery(2) function signature change, now the same as mmap(2) | Dale Rahn | |
2003-04-25 | change mquery() function call signature to be the same a mmap(). It | Dale Rahn | |
needs the prot/flags info and passing the addresses via arg/return allows it to be traced via ktrace better than an in/out paramter. This adds a new mquery syscall and renames the old one to omquery. New kernel _MUST_ be built and installed before building ld.so with this change. ok millert@ tedu@ | |||
2003-04-22 | Indent delay slot insns | Jason Wright | |
2003-04-22 | char * in prototypes should be const; Kamo Hiroyasu | Todd C. Miller | |
2003-04-21 | Mention that stroul() et al *do* accept negative numbers, they | Todd C. Miller | |
just (effectively) cast to unsigned. ho@ OK | |||
2003-04-21 | Close .Bl | Mike Pechkin | |
millert@ | |||
2003-04-19 | - kill unused var | Anil Madhavapeddy | |
- sscanf format string should scan for u_short not u_int - some missing includes - convert u_short -> in_port_t (from millert) ok millert@ | |||
2003-04-18 | Fix format odditiy in 'ERRORS' section, formats like mmap(2) manpage now. | Dale Rahn | |
2003-04-18 | Document that mquery() returns EINVAL if request memory was not available | Dale Rahn | |
when MAP_FIXED is specified. ok tedu@ | |||
2003-04-17 | fix typo; Julien Bordet | Todd C. Miller | |
2003-04-17 | picky assembler warning cleanups | Dale Rahn | |
2003-04-17 | ELF fixups, ELF PIC syscall support, asm changes as requested by assembler. | Dale Rahn | |
2003-04-17 | i386 startup code for ELF. based on newer version of NetBSD code. | Dale Rahn | |
2003-04-16 | Warn people that the value of the pointer passed in to asprinf() | Todd C. Miller | |
is implementation-specific when we get ENOMEM but mention that *we* set it to NULL. | |||
2003-04-14 | when libc/shlib_version says you need to crank this one too, DO NOT IGNORE | Theo de Raadt | |
THAT ADVICE -- IT IS THERE FOR A REASON | |||
2003-04-14 | standalone/stand alone -> stand-alone; | Jason McIntyre | |
from NetBSD (Igor Sobrado); httpd stuff passed to apache people; ok millert@ | |||
2003-04-14 | There are two related changes. | Artur Grabowski | |
The first one is an mquery(2) syscall. It's for asking the VM system about where to map things. It will be used by ld.so, read the man page for details. The second change is related and is a centralization of uvm_map hint that all callers of uvm_map calculated. This will allow us to adjust this hint on architectures that have segments for non-exec mappings. deraadt@ drahn@ ok. | |||
2003-04-13 | try to use the X Window System, X11 or XFree86 consistently. | Jason McIntyre | |
diffs from Paul Weismann, via mickey@ aided, abetted and ok'd matthieu@ | |||
2003-04-12 | Change copyright to a less restrictive ISC-style license to encourage | Todd C. Miller | |
people to bundle this code. | |||
2003-04-12 | underfined -> undefined; | Jason McIntyre | |
from Fabio Olive Leite; | |||
2003-04-11 | bindresvport() does not automatically select another port if the | Todd C. Miller | |
specified one is in use (closes PR 3192). While I am here, reorganize and clean up much of the wording. This now reads like a native speaker of English wrote it. | |||
2003-04-10 | make the second example valid; ok millert@ | Jason Peel | |
2003-04-09 | makeing local table static saves some bytes; idea from mickey@ | Markus Friedl | |
2003-04-08 | remove printf("bar\n"); | Markus Friedl | |
2003-04-08 | invalid mdoc macros | David Krause | |
caused words to disappear from the output ok jmc@ a while ago | |||
2003-04-07 | Xr to strlcpy and strlcat more; ok millert | Theo de Raadt | |
2003-04-06 | sprintf->snprintf. deraadt@ suggestions and ok | Hakan Olsson | |