Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | typos; | 2003-04-30 | 9 | -29/+29 | ||
| | ||||||
* | remove printf from static dlctl and dlerror stubs. Return -1 if | 2003-04-29 | 1 | -4/+2 | ||
| | | | | | | 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 | |||||
* | Change mquery() function call signature to be the same a mmap(). It | 2003-04-28 | 1 | -4/+5 | ||
| | | | | | | | | 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. | |||||
* | Remove note about POLLMSG. not used and not provided. ok millert@ | 2003-04-25 | 1 | -4/+1 | ||
| | ||||||
* | Make function declaration and man page match prototype. Closes PR 3236 | 2003-04-25 | 2 | -11/+9 | ||
| | ||||||
* | backout mquery change, something broke when not combined with a different diff. | 2003-04-25 | 1 | -5/+4 | ||
| | ||||||
* | Document hw.sensors | 2003-04-25 | 1 | -1/+6 | ||
| | ||||||
* | always widen the imputed netmask if it is narrower than the specified octets. | 2003-04-25 | 1 | -3/+3 | ||
| | | | | | | | | | 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@ | |||||
* | Document changes to mquery(2) function signature change, now the same as mmap(2) | 2003-04-25 | 1 | -15/+17 | ||
| | ||||||
* | change mquery() function call signature to be the same a mmap(). It | 2003-04-25 | 1 | -4/+5 | ||
| | | | | | | | | 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@ | |||||
* | Indent delay slot insns | 2003-04-22 | 8 | -43/+43 | ||
| | ||||||
* | char * in prototypes should be const; Kamo Hiroyasu | 2003-04-22 | 1 | -4/+4 | ||
| | ||||||
* | Mention that stroul() et al *do* accept negative numbers, they | 2003-04-21 | 1 | -1/+6 | ||
| | | | | just (effectively) cast to unsigned. ho@ OK | |||||
* | Close .Bl | 2003-04-21 | 1 | -1/+2 | ||
| | | | | millert@ | |||||
* | Fix format odditiy in 'ERRORS' section, formats like mmap(2) manpage now. | 2003-04-18 | 1 | -2/+2 | ||
| | ||||||
* | Document that mquery() returns EINVAL if request memory was not available | 2003-04-18 | 1 | -5/+4 | ||
| | | | | when MAP_FIXED is specified. ok tedu@ | |||||
* | fix typo; Julien Bordet | 2003-04-17 | 1 | -2/+2 | ||
| | ||||||
* | ELF fixups, ELF PIC syscall support, asm changes as requested by assembler. | 2003-04-17 | 12 | -35/+84 | ||
| | ||||||
* | Warn people that the value of the pointer passed in to asprinf() | 2003-04-16 | 1 | -3/+8 | ||
| | | | | | is implementation-specific when we get ENOMEM but mention that *we* set it to NULL. | |||||
* | There are two related changes. | 2003-04-14 | 4 | -5/+149 | ||
| | | | | | | | | | | | | 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. | |||||
* | Change copyright to a less restrictive ISC-style license to encourage | 2003-04-12 | 3 | -68/+35 | ||
| | | | | people to bundle this code. | |||||
* | underfined -> undefined; | 2003-04-12 | 1 | -2/+2 | ||
| | | | | from Fabio Olive Leite; | |||||
* | bindresvport() does not automatically select another port if the | 2003-04-11 | 1 | -30/+34 | ||
| | | | | | | 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. | |||||
* | make the second example valid; ok millert@ | 2003-04-10 | 1 | -3/+4 | ||
| | ||||||
* | makeing local table static saves some bytes; idea from mickey@ | 2003-04-09 | 1 | -2/+2 | ||
| | ||||||
* | Xr to strlcpy and strlcat more; ok millert | 2003-04-07 | 5 | -8/+13 | ||
| | ||||||
* | string handling; ok millert | 2003-04-06 | 1 | -14/+21 | ||
| | ||||||
* | fix typo, bad tdeval; pt out by emmf26@umr.edu | 2003-04-05 | 1 | -2/+2 | ||
| | ||||||
* | add a size parameter to doabbr(), and convert | 2003-04-05 | 1 | -15/+21 | ||
| | | | | | strcpy/sprintf -> strlcpy/snprintf. ok tedu@, krw@; help from deraadt@, millert@ | |||||
* | sprintf -> snprintf | 2003-04-05 | 1 | -6/+12 | ||
| | | | | ok tedu@, hints deraadt@, millert@ | |||||
* | strcpy/strcat -> strlcpy/strlcat | 2003-04-05 | 3 | -9/+9 | ||
| | | | | ok tedu@, hints by deraadt@ and millert@ | |||||
* | strcat -> strlcat | 2003-04-04 | 1 | -3/+3 | ||
| | | | | ok deraadt@ tedu@ tdeval@ | |||||
* | exceeds -> exceedes; | 2003-04-03 | 1 | -2/+2 | ||
| | | | | from Pedro Bastos (thanks) | |||||
* | Use snprintf instead of a strcpy(), strncat() and strcat() sequence | 2003-04-02 | 1 | -5/+4 | ||
| | | | | deraadt@ OK | |||||
* | fifo -> FIFO | 2003-04-02 | 6 | -24/+24 | ||
| | | | | ok millert@ | |||||
* | nfs -> NFS | 2003-04-02 | 1 | -4/+4 | ||
| | ||||||
* | use strlcpy(); assumes buf is at least ndigit bytes long which is as | 2003-04-02 | 1 | -4/+7 | ||
| | | | | safe as we can get. deraadt@ OK | |||||
* | Rewritten setuserpath() that is much clearer and uses strlcpy() | 2003-03-31 | 1 | -43/+68 | ||
| | | | | for added paranoia. tdeval@ and mpech@ OK | |||||
* | F_[GS]ETFL deal with file status flags, not descriptor status flags. | 2003-03-28 | 1 | -3/+7 | ||
| | | | | Closes PR 3172 | |||||
* | Ip -> IP; | 2003-03-28 | 1 | -2/+2 | ||
| | | | | ok miod@ | |||||
* | spelling typos/errors | 2003-03-18 | 1 | -2/+2 | ||
| | | | | ok miod@ jmc@ | |||||
* | duplicate words: and and, the the | 2003-03-18 | 1 | -2/+2 | ||
| | | | | ok miod@ jmc@ | |||||
* | mention namelen in DESCRIPTION | 2003-03-18 | 2 | -2/+10 | ||
| | ||||||
* | Do not capitalize "Indicates" as it does not start the sentence | 2003-03-18 | 2 | -4/+4 | ||
| | ||||||
* | If hostname != NULL, hostname is not a numeric string, and AI_NUMERICHOST | 2003-03-17 | 1 | -3/+3 | ||
| | | | | is set, return EAI_NONAME like RFC2553 specifies. millert/itojun ok. | |||||
* | some small typos; | 2003-03-17 | 5 | -11/+11 | ||
| | ||||||
* | ANSI function headers | 2003-03-14 | 2 | -12/+6 | ||
| | ||||||
* | a few more strlcy; ok from beck & ho | 2003-03-13 | 5 | -17/+19 | ||
| | ||||||
* | add some notes about nosuid mounted file systems. suggested by deraadt@ | 2003-03-10 | 1 | -1/+5 | ||
| | | | | ok deraadt@ millert@ | |||||
* | duplicate words and spelling fixes in comments | 2003-03-10 | 4 | -10/+10 | ||
| | | | | ok miod@ |