summaryrefslogtreecommitdiffstats
path: root/lib
Commit message (Collapse)AuthorAgeFilesLines
* The existing libxpg4.so.2.0 didn't support zh_TW.Big5 locale.obrien1999-09-141-90/+100
| | | | | PR: 13623 Submitted by: jtjang@gcn.net.tw
* __collate_substitute() do something non-trivial only for German. For everyonedt1999-09-123-6/+25
| | | | | | | | else, it is equivalent to strdup(). So, we will check if the substitution tables are trivial at the load time, and possibly save 2 calls to __collate_substitute() in strcoll(). Still, __collate_substitute() should not exist.
* Reduce time of __collate_substitute() from O(strlen(s)^2) to O(strlen(s)).dt1999-09-121-8/+11
| | | | | | | | Other minor optimizations. I got ~30% speedup in strcoll() for 50 char strings, ~40% speedup for 100 char strings, and unmeasurable speedup for 1M strings. Collates are still terribly slow. To make them reasonable fast, __collate_substitute() should be killed.
* Fix a file descriptor leak in cam_open_btl(). The xpt device was opened,ken1999-09-121-1/+5
| | | | | | but never closed. Submitted by: amobbs@allstor-sw.co.uk
* Implement new format specifier for strftime: %OB, alternative nationaldt1999-09-113-19/+58
| | | | | | | | | representation of the full month name. In the Russian locale, this alternative will be "nominative case", useful when the date designate month as a whole. E.g. month heading in a calendar. I hope it can be useful for some other locales too. Discussed with: wollman, ache
* Add FreeBSD history in 'HISTORY'alfred1999-09-111-1/+4
| | | | Pointed out by: obrien
* Change toupper/tolower so that they don't give a bogus answer if thedfr1999-09-111-2/+10
| | | | argument is already upper/lower.
* Fixed disordering in previous commit.bde1999-09-111-1/+1
|
* Document fhopen, fhstat, and fhstatfs syscalls.alfred1999-09-112-1/+137
| | | | Obtained from: NetBSD
* - Optimization to the previous (rev 1.15) commit.ru1999-09-101-9/+11
| | | | | | Requested by: eivind Discussed with: eivind Reviewed by: brian, eivind
* sync with src/sys/sys/mount.halfred1999-09-101-1/+2
|
* Add aio_{cancel,error,return,suspend,write} into the mix.billf1999-09-091-1/+3
| | | | | Submitted by: Dan Nelson <dnelson@emsphone.com> Forgotten by: mpp
* Handle TCP reset sequence properly.ru1999-09-091-2/+2
| | | | | | | | | | | | | | | | | | | In the words of originator: :If an incoming connection is initiated through natd and deny_incoming is :not set, then a new alias_link structure is created to handle the link. :If there is nothing listening for the incoming connection, then the kernel :responds with a RST for the connection. However, this is not processed :correctly in libalias/alias.c:TcpMonitor{In,Out} and :libalias/alias_db.c:SetState{In,Out} as it thinks a connection :has been established and therefore applies a timeout of 86400 seconds :to the link. : :If many of these half-connections are initiated (during, for example, a :port scan of the host), then many thousands of unnecessary links are :created and the resident size of natd balloons to 20MB or more. PR: 13639 Reviewed by: brian
* Fix typo.ru1999-09-081-1/+1
|
* - add reference to siginterrupt(3)ru1999-09-061-32/+35
| | | | - mdoc(7) fixes
* Don't forget to reset _pw_stepping_yp to 0 before returning. Fixes a bugdes1999-09-061-0/+1
| | | | | | | | where getpwent() would ignore wildcard entries that followed a netgroup entry. PR: misc/12999 Submitted by: David Hedley <david@inty.net>
* Zap $Source$peter1999-09-061-1/+0
|
* Zap $Locker$peter1999-09-062-2/+0
|
* Tidy up $Log$ debris.peter1999-09-051-32/+2
|
* Connect libform/libpanel/libmenu.peter1999-09-051-5/+3
|
* Some style and "look" fixesphantom1999-09-059-12/+27
| | | | Reviewed by: mpp
* Name Description (.Nd macro) added.phantom1999-09-051-6/+7
| | | | | | | | Style and punctuation errors fixes. ERRORS section included to RETURN VALUES because it's describing return values instead of errors and their handling. Reviewed by: mpp
* mdoc(7) style fix.phantom1999-09-051-2/+4
| | | | | | Correct RB_* values list bounds. Reviewed by: mpp
* mdoc(7) style fix: FreeBSD -> .Fxphantom1999-09-057-7/+14
| | | | Reviewed by: mpp
* Remove useless .Fn macro suffixphantom1999-09-051-1/+1
| | | | Reviewed by: mpp
* mdoc style fix.phantom1999-09-051-4/+2
| | | | Reviewed by: mpp
* mdoc(7) style fixesphantom1999-09-051-2/+4
| | | | Reviewed by: mpp
* Add bmake glue for libform (the SVSV-style ETI curses form driver frompeter1999-09-052-0/+46
| | | | ncurses)
* Add bmake glue for libpanel (the SVSV-style ETI curses panel (overlappingpeter1999-09-052-0/+38
| | | | layers) driver from ncurses)
* Add bmake glue for libmenu (the SVSV-style ETI curses menu driver frompeter1999-09-052-0/+48
| | | | ncurses)
* Spelling and grammar error fix.phantom1999-09-041-2/+8
| | | | | | | | mdoc(7)'fy. PR: docs/13406 Submitted by: Garret Woolman <woolman@khavrinen.lcs.mit.edu> Reviewed by: mpp
* Fixed disorder in comments.bde1999-09-041-6/+6
| | | | | | Build libncurses early again (it had drifted into set of libraries that have no ordering requirements, but it must be built before libedit here and before some gnu libraries in ../Makefile.inc1).
* Build this from contrib/ now.markm1999-09-0413-607/+7
|
* Use definitions provided in sysarch.h for args structures.luoqi1999-09-025-41/+12
| | | | Reviewed by: marcel
* Fix the root cause of the fts buffer overflow. This is a temporaryimp1999-09-022-10/+46
| | | | | | | | | patch to stop the core dumps while others come up with a better reviewed patch which may also fix other problems. We do illegal pointer arithmetic, but it should be OK since FreeBSD only supports machines with flat address spaces. Submitted by: bde
* Make the libcrypt's build in the correct order.markm1999-09-011-6/+5
|
* Update a comment regarding dependencies on libtermcap and curses etc.peter1999-09-011-2/+1
|
* Add a missing dependency for make_hash which could make various forms ofpeter1999-09-012-2/+2
| | | | | | | make -jN fail. This fixes the present problem only, not the larger one of when those internal tools are built and the cross-compiling etc. Submitted by: luoqi
* Back out previous commit. I mistook passing commentary from bde forsheldonh1999-08-311-9/+6
| | | | | | review. Requested by: bde
* Make SYMLINKS relative. SYMLINKS are supposed to be relative, and for thisdt1999-08-302-50/+50
| | | | reason ${DESTDIR} isn't added to the symlink source.
* Fix a memory leak: free the thread-specific poll_data, used in the select()dt1999-08-303-0/+18
| | | | | | | implementation. PR: 13368 Submitted by: Steve Bernacki, Jr. <steve@copacetic.net>
* Only issue a warning for the first occurrence of a UID > USHRT_MAX andsheldonh1999-08-301-6/+9
| | | | | | | the first occurrence of a GID > USHRT_MAX. PR: 13344 Reviewed by: bde
* Don't build libtermcap, libcurses, libmytinfo, just libncurses.peter1999-08-301-4/+5
|
* Use src/contrib/ncurses, v5.0.990821 prerelease.peter1999-08-30130-17492/+1882
| | | | | | | | | | | | This isn't quite finished yet, there are still some unresolved problems with ospeed and the sgtty.h (non-posix) terminal interface. Mostly this only causes problems with src/games. The other tools and libraries (libform,libpanel,libmenu) will come shortly but are seperate. Beware, there be dragons here! (The build will be broken for a short while)
* When checking for valid timevals in the wrapped select() and poll()deischen1999-08-309-27/+42
| | | | | routines, don't return EINVAL but set errno to EINVAL and return -1. Added a check in pthread_cond_timedwait for a null timespec pointer.
* Add $FreeBSD$ and spell Eklund properly.billf1999-08-297-1/+14
| | | | Approved by: brian (well, he approved adding $Id$)
* Add $FreeBSD$ lines to man pages that are missing them to make itmpp1999-08-2838-0/+76
| | | | | | | easier for translation teams. PR: docs/13418 Submitted by: Alexey Zelkin <phantom@cris.net>
* Add $FreeBSD$ lines to man pages that are missing them to makempp1999-08-281-0/+2
| | | | | | | it easier for translation teams. PR: docs/13418 Submitted by: Alexey Zelkin <phantom@cris.net>
* $Header$ -> $FreeBSD$peter1999-08-2811-14/+18
|
* - Handle the signal SIGTERM.yokota1999-08-281-9/+8
| | | | | | | | | | - Slightly rearrange VGLCheckSwitch() to ensure the display content will be correctly restored when switching back to the vty where the vgl program is running. - VGLEnd() should clear the screen only when the vty is in the foreground. Discussed with: sos
OpenPOWER on IntegriCloud