summaryrefslogtreecommitdiffstats
path: root/lib
Commit message (Collapse)AuthorAgeFilesLines
* mdoc(7) police: Scheduled sweep.ru2003-02-2418-194/+186
|
* Insert threads interrupted by a signal while running onto the run queue.mini2003-02-234-52/+6
|
* Add signal logic to the build.mini2003-02-232-0/+4
|
* Mention CLOCK_MONOTONIC.phk2003-02-231-2/+3
|
* mdoc(7) police: markup laundry.ru2003-02-2312-38/+44
|
* mdoc(7) police: kill self-xref.ru2003-02-231-1/+0
|
* Punctuation.ru2003-02-231-1/+1
|
* Typo.ru2003-02-231-1/+1
|
* Grammar.ru2003-02-231-0/+1
|
* More changes from NetBSD:mikeh2003-02-231-9/+11
| | | | | | | | * use correct error detection of realloc failure * strtol negative return check * use strtol to validate string instead of rolling our own validation code * terminate the command sequence correctly
* Grab some changes from NetBSD:mikeh2003-02-231-5/+6
| | | | | | fix const poisoning add cast to silence warning pull in unistd.h
* Apple PR-2449102: getdomainname() doesn't document that it is NIS/YP specificzarzycki2003-02-221-3/+3
|
* Use strlcpy instead of strncpy.johan2003-02-221-2/+1
| | | | | Submitted by: imp Reviewed by: silence on -audit
* Fix a bad free() call that would occur if some #if 0'd code was used.tjr2003-02-221-4/+6
|
* Mention that dlerror() is also applicable to retrieve error message afterphantom2003-02-211-0/+2
| | | | dladdr() and dlinfo() functions calls.
* Some things don't build for PowerPC yet.obrien2003-02-211-1/+5
| | | | List from: benno
* Don't tell people to include <sys/dkstat.h> any more.phk2003-02-191-1/+0
| | | | Pointed out by: kuriyama
* Fix the description for mkdtemp(), which creates directories, not files.gshapiro2003-02-191-1/+1
| | | | | Submitted by: Murray S. Kucherawy <msk@blackops.org> X-MFC after: re approval
* Clean up error reporting in block.c, so that it gives honest error stringsjmallett2003-02-192-13/+22
| | | | | | | | | | | | | | | | | | | | for the sorts of errors we run into[1]. This also gives us room to put in a vaguely appropriate casts to silence warnings since our compiler doesn't like when we compare ssize_t to size_t[2]. Add a cast in sblock.c[3] to silence a warning because of signed vs. size_t hell (again). Clean up nearby excessive parenthemutilation[4]. Reviewed by: bde [2] [3] Suggested by: bde, many [1] Submitted by: bde [4] An aside about [4], bde notes that we do not check for a negative value for the fs bsize. I'm nto going to do that in every situation we use it, one must expect a reasonable program to pass down reasonable values. Some foot shooting protection I will tolerate, some I will not. Also he suggests some possible conditional improvements there, which I may take to heart. PS: For me at least, this is now WARNS=5 clean...
* Update errors.trhodes2003-02-181-8/+8
| | | | | PR: 48125 Submitted by: Per Hedeland <per@hedeland.org> (original version)
* Whack 28 unused variables.nectar2003-02-188-19/+9
|
* Remove these from libc; they are now system calls.deischen2003-02-182-532/+0
| | | | Prompted by: mini
* Expand length of pnpinfo and length fields since pccard pnpinfo canimp2003-02-171-2/+2
| | | | easily be longer than 64 characters.
* Add libgmp.so.3 from 4.7-RELEASE CDs.obrien2003-02-172-0/+1552
| | | | Requested by: des
* Add libgmp.so.3 from 4.7-RELEASE CDs.nectar2003-02-172-0/+2
| | | | Requested by: des
* Deliver signals posted via an upcall to the appropriate thread.mini2003-02-1712-1050/+548
|
* Call the weak symbol for sigprocmask, so that it can be overridden.mini2003-02-171-1/+1
|
* Back out "drop first N values" method of removing monotonically increasedache2003-02-171-7/+1
| | | | | | | | | | | | | | | seed->first value correlation. It breaks rand_r()... Other possible methods like shuffling inside aray will breaks rand_r() too, because it assumes only one word state, i.e. nothing extra can be added after seed assignment in srand(). BTW, for old formulae seed->first value correlation is not so monotonically increased as with other Linear Congruential Generators of this type only becase arithmetic overflow happens. But overflow affects distribution and lower bits very badly, as many articles says, such type of overflow not improves PRNG. So, monotonically increased seed->first value correlation problem remains...
* Eliminate 61 warnings emitted at WARNS=2 (leaving 53 to go).nectar2003-02-1637-39/+74
| | | | | | | Only warnings that could be fixed without changing the generated object code and without restructuring the source code have been handled. Reviewed by: /sbin/md5
* Remove include of <sys/dkstat.h>phk2003-02-161-1/+0
|
* Premptively include <sys/resource.h> to get the cp_time[CPUSTATES].phk2003-02-161-0/+1
|
* Add an "allow_local" option which forces historical behaviour.des2003-02-162-2/+20
|
* Assume "localhost" if no remote host was specified. This is safe from ades2003-02-151-3/+4
| | | | POLA point of view since the stock /etc/opieaccess now allows localhost.
* Add libcrypto.so.2/libssl.so.2 from 4.7-RELEASE CDs.nectar2003-02-156-0/+18489
|
* Add dlinfo(3) manual page to the rank of base system manpagesphantom2003-02-151-2/+2
|
* Add examples of dlinfo() usage to manual page.phantom2003-02-151-1/+48
|
* o Document that dlsym()'s behaviour with new special handle RTLD_SELFphantom2003-02-141-1/+16
| | | | | o Add cross reference to dlinfo(3) o Minor mdoc nits
* Follow Solaris's manual page and describe Link_map structure herephantom2003-02-141-1/+29
|
* Add manual page for dlinfo(3). It's still need some work and addphantom2003-02-141-0/+191
| | | | examples, but it's better than nothing already.
* Enable just committed manual pages, update MLINKSphantom2003-02-131-0/+13
|
* Add AUTHORS sectionphantom2003-02-131-0/+6
|
* Finally! Document all undocumented functions in libc_r.phantom2003-02-1310-0/+696
| | | | | | | | | | | | | | | | | | | | Add manual pages for following functions: . pthread_attr_setcreatesuspend_np(3) . pthread_main_np(3) . pthread_multi_np(3) . pthread_single_np(3) . pthread_mutexattr_getkind_np(3) . pthread_mutexattr_setkind_np(3) . pthread_resume_all_np(3) . pthread_resume_np(3) . pthread_set_name_np(3) . pthread_suspend_all_np(3) . pthread_suspend_np(3) . pthread_switch_add_np(3) . pthread_switch_delete_np(3) MFC after: 3 days
* Break important implementation detail note into IMPLEMENTATION DETAILSphantom2003-02-131-3/+7
| | | | | | section. Add cross reference to pthread_attr_getstack() function. MFC after: 1 day
* Add cross reference for pthread_attr_get_np()phantom2003-02-131-0/+1
|
* Rehash MLINKS: add missing ones for recently added pthread_attr_{get,set}stack()phantom2003-02-131-3/+2
| | | | functions and remove links for 3 non-existent functions
* Add appropriate MLINKS for functions documented in libgeom.3phantom2003-02-131-0/+10
|
* Fix some mdoc issues: add .Nd to NAME section, use valid .Lb argument,phantom2003-02-131-15/+16
| | | | use .Fn there appropriate
* Implement dlinfo() function.kan2003-02-131-0/+8
| | | | | | | | | | Introdice RTLD_SELF special handle and properly process it within dlsym() and dlinfo() functions. The intention is to improve our compatibility with Solaris and to make a Java port easier. Partially submitted by: phantom
* o Implement C99 classification macros isfinite(), isinf(), isnan(),mike2003-02-1213-102/+220
| | | | | | | | | isnormal(). The current isinf() and isnan() are perserved for binary compatibility with 5.0, but new programs will use the macros. o Implement C99 comparison macros isgreater(), isgreaterequal(), isless(), islessequal(), islessgreater(), isunordered(). Submitted by: David Schultz <dschultz@uclink.Berkeley.EDU>
* This manual is called SIGNBIT(3) not FPCLASSIFY(3).mike2003-02-121-1/+1
|
OpenPOWER on IntegriCloud