summaryrefslogtreecommitdiffstats
path: root/lib
Commit message (Collapse)AuthorAgeFilesLines
* Replace absolute addressing in the call instructions with position-independendkib2006-06-051-2/+3
| | | | | | | | calls. This eliminates TEXTREL from libc, making its text segment relocatable. PR: i386/85242 Approved by: kan (mentor) MFC after: 1 month
* Add audit_submit.3 to the set of man pages built and installed withrwatson2006-06-051-1/+2
| | | | | | | libbsm. This interface is new as of OpenBSM 1.0 alpha 6. Submitted by: csjp Obtained from: TrustedBSD Project
* Include strings.h for bzero()delphij2006-06-052-0/+2
|
* Remove unused member.davidxu2006-06-031-1/+0
|
* Remove unused member field m_queue.davidxu2006-06-022-6/+1
|
* o Record a file offset for a last successfully parsed group file line.maxim2006-06-011-0/+8
| | | | | | | | | | | If the initial buffer size (1KB) for the given group line is not big enough, reset the offset. It helps to do not miss this line when getrg() reallocates the larger buffer and tries to parse the line again. PR: bin/52433, kern/55031, bin/83696, misc/97640, misc/98111 Submitted by: bsw71@mail.ru, Philip M. Gollucci, Justin Erenkrantz Glanced at: nectar MFC after: 1 month
* o Document the fact truncate(2) has no effect for !VDIR or !VREG files.maxim2006-06-011-1/+5
| | | | Submitted by: ceri
* Explicitly request pre-zeroed memory instead of memset'ing ourdelphij2006-05-311-5/+1
| | | | | | own. Ok'ed by: davidxu
* Fix the output.ru2006-05-271-0/+1
| | | | Noticed by: rodrigc
* - Add include for libutil.h and string.h for prototype.delphij2006-05-251-1/+3
| | | | | - Cast the rvalue to be compared with the result of strlen() to size_t.
* GC old a.out and K&R support.imp2006-05-231-9/+0
|
* GC these crt{begin,end}.c, which are unused since the last FreeBSD platformmarius2006-05-222-114/+0
| | | | switched to those created from GCC's crtstuff.c 4 years ago.
* Reflect int -> size_t changes in glob.hache2006-05-221-3/+3
|
* Reflect size_t changes in glob.hache2006-05-221-22/+23
| | | | Obtained from: NetBSD (mostly)
* Remove pending actions asked in comments for SHLIB_MAJOR bump, done.ache2006-05-221-2/+0
| | | | Reviewed by: ume
* Remove the kludge, as asked in the Makefile:ache2006-05-221-3/+0
| | | | | | # If you bump SHLIB_MAJOR, remove the kluge from gen/gethostname.c. Reviewed by: ume
* Bump library majro version for gethostbyaddr(3).ume2006-05-213-2/+3
|
* Nuke some compatibility crufts of resolver for 6.X and earlier.ume2006-05-213-15/+0
| | | | X-MFC after: never
* Fix gethostbyaddr() prototype to conform to IEEE Std 1003.1 on 64 bitume2006-05-211-25/+22
| | | | | | arch. X-MFC after: never
* Return EAI_OVERFLOW instead of EAI_MEMORY when the supplied buffer isume2006-05-213-4/+7
| | | | | | too short. This conforms to RFC3493, POSIX and XPG6. Obtained from: NetBSD
* Upgrade res_update(3) and the friends to BIND9's one excluding TSIGume2006-05-2112-943/+69
| | | | | | support. X-MFC after: never
* This commit was generated by cvs2svn to compensate for changes in r158782,ume2006-05-214-0/+2201
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Vendor import of BIND 9.3.2ume2006-05-214-0/+2201
| |
| * Oops, remove the file I imported into wrong place.ume2006-03-211-47/+0
| |
* | Remove reference to "System call restart" in intro(2). intro(2) does notrodrigc2006-05-201-3/+4
| | | | | | | | | | have such a reference. Add a reference instead to SA_RESTART in sigaction(2).
* | o .Xr strtonum(3).maxim2006-05-202-0/+2
| | | | | | | | MFC after: 1 week
* | Correct decoding a string containing '/'.jkim2006-05-191-1/+1
| | | | | | | | | | PR: 97485 Submitted by: Mikko Tyolajarvi < mbsd at pacbell dot net >
* | Fix return value.davidxu2006-05-171-1/+2
| |
* | get thread signal info.davidxu2006-05-172-0/+38
| |
* | Export offsets of thread signal pending set and signal mask for debugger.davidxu2006-05-173-0/+6
| |
* | * Document the fact that non-superusers cannot change file flags forkeramida2006-05-161-2/+47
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | objects with SF_IMMUTABLE, SF_APPEND, or SF_NOUNLINK. * Document that non-superusers cannot set or clear any SF_* flag (setting fails with EPERM, clearing is silently ignored). * Document that superusers cannot change any flag if one of SF_IMMUTABLE, SF_APPEND, SF_NOUNLINK is set and securelevel is greater than 0. * Document SF_SNAPSHOT and note that it is maintained by the system and is, for this reason, impossible to set to clear by any user. PR: docs/33877 Submitted by: harti Help by: George Marsellis <gam9478@njit.edu> MFC after: 1 week
* | Add a manual dependency on ssh_namespace.h.des2006-05-131-2/+6
| | | | | | | | Discussed with: ru
* | Introduce a namespace munging hack inspired by NetBSD to avoid pollutingdes2006-05-131-1/+1
| | | | | | | | | | | | | | | | the namespace of applications which inadvertantly link in libssh (usually through pam_ssh) Suggested by: lukem@netbsd.org MFC after: 6 weeks
* | Fix gethostbyaddr() prototype to conform to IEEE Std 1003.1:ume2006-05-126-22/+36
| | | | | | | | | | | | | | | | | | | | http://www.opengroup.org/onlinepubs/009695399/functions/gethostbyaddr.html gethostbyaddr_r() is changed as well. It breaks ABI backward compatibility on 64 bit arch. So, we fix it on 32 bit arch only for now. Reported by: Rostislav Krasny <rosti.bsd@gmail.com>
* | Save errno before calling pthread_mutex_lock because pthread_mutex_lockdavidxu2006-05-111-2/+2
| | | | | | | | may change errno unexpectly.
* | Add symbol versions: FBSD_1.0 and FBSDprivate.davidxu2006-05-111-3/+387
| |
* | Increase the minimum chunk size by a power of two (32kB --> 64kB, assumingjasone2006-05-101-2/+2
| | | | | | | | | | | | | | | | 4kB pages), in order to avoid dangerous rounding error when calculating fullness limits during run promotion/demotion. Convert a structure bitfield to a normal field in areana_run_t. This should have been changed along with the other fields in revision 1.120.
* | In order to let new binutils can compile it, replace movl withdavidxu2006-05-072-18/+18
| | | | | | | | | | | | movw for segment saving and restoring. Submitted by: Diego 'Flameeyes' Petteno flameeyes at gentoo dot org
* | A few minor wording changes and a clarification about error conditions.bsd2006-05-031-10/+10
| |
* | Fix alignment problem on AMD64.ume2006-05-021-4/+4
| | | | | | | | | | | | Reported by: Pascal Hofstee <caelian__at__gmail.com> Submitted by: Michael Bushkov <bushman__at__rsu.ru> Tested by: Pascal Hofstee <caelian__at__gmail.com>
* | Simplify some of the wide-character handling, inspiredkientzle2006-05-013-62/+40
| | | | | | | | | | | | | | in part by OpenBSD's not-quite-standard-compliant standard libraries. (No loss of functionality, just minor recoding to not rely on certain "standard" facilities that weren't actually needed.)
* | Whitespace cleanup.kientzle2006-05-011-2/+2
| |
* | `cache' couldn't co-exist with `compat'.ume2006-04-301-2/+3
| | | | | | | | Submitted by: "Michael Bushkov" <bushman__at__rsu.ru>
* | Go with a different version of the previous patch so to preserve errno.marcus2006-04-301-5/+5
| | | | | | | | Approved by: scottl (implicit)
* | Fix a file descriptor leak in cam_lookup_pass() when the ioctl to findmarcus2006-04-301-4/+5
| | | | | | | | | | | | | | the passthru device fails. Approved by: scottl MFC after: 1 day
* | - Extend the nsswitch to support Services, Protocols and Rpcume2006-04-2821-737/+5438
| | | | | | | | | | | | | | | | databases. - Make nsswitch support caching. Submitted by: Michael Bushkov <bushman__at__rsu.ru> Sponsored by: Google Summer of Code 2005
* | s/long/int.davidxu2006-04-271-2/+2
| |
* | - Use same priority range returned by kernel's sched_get_priority_min()davidxu2006-04-276-55/+57
| | | | | | | | | | and sched_get_priority_max() syscalls. - Remove unused fields from structure pthread_attr.
* | Change the semantics of brk_max to dynamically deal with data segmentjasone2006-04-271-71/+83
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | bounds. [1] Modify logic for utilizing the data segment, such that it is possible to create huge allocations there. Shrink the data segment when deallocating a chunk, if it is at the end of the data segment. Rename chunk_size to csize in huge_malloc(), in order to avoid masking a static variable of the same name. [1] Reported by: Paul Allen <nospam@ugcs.caltech.edu>
* | o Add IDs for Plan9, QNX4.X, Mac OS-X, Linux exteneded partitions.maxim2006-04-251-0/+7
| | | | | | | | | | | | PR: bin/96326 Submitted by: Alex Kozlov MFC after: 2 weeks
OpenPOWER on IntegriCloud