summaryrefslogtreecommitdiff
path: root/lib
AgeCommit message (Collapse)Author
2013-07-31remove complete balony description of the setprogname() interface [asTheo de Raadt
imported from netbsd] -- like, if maximum portability requires you to setprogname(), what NAME WOULD YOU PASS IT? LIKE DUH!!!!! also add some historical context so that people understand how this fits into the scheme of things. ok okan kettenis jmc
2013-07-30Free the list used for tracking the pthread_{get,set}specific()Philip Guenther
data after calling all the destructors. noted by kettenis@ diff by tedu@
2013-07-30Stop overwriting the dying thread's struct thread as its tid member mayPhilip Guenther
be concurrently updated by __threxit() prompted by a report from Alf Schlichting (a.schlichting (at) lemarit.com) ok kettenis@
2013-07-29fix a colossal cockup due to pointer/array confusion.Ted Unangst
code isn't used yet, thankfully. first observed by djm running regress. ok deraadt djm
2013-07-20sync with the actual definition of struct statfs in <sys/mount.h>; ok jmc@Christian Weisgerber
2013-07-18HISTORY; tweaks and ok sobrado@ jmc@Ingo Schwarze
2013-07-17missing symbol rename.Eric Faurot
2013-07-17more library historyIngo Schwarze
facts checked by sobrado@ style tweaks and ok jmc@
2013-07-16use .Mt for email addresses; from Jan Stary <hans at stare dot cz>; ok jmc@Ingo Schwarze
2013-07-16more macro simplification; from Jan StaryJason McIntyre
2013-07-16non[ -]existing -> non-existent;Jason McIntyre
2013-07-15Fix atan2f() and hypotf() by actually converting both their arguments to theMiod Vallat
larger type and passing them both the the double routine.
2013-07-15use some generic code on vax, to do round/roundf/scalbln...Marc Espie
suggested by martynas@ okay miod@ (just rearranges the !vax makefile, no compile change there)
2013-07-15use atan2f to add atanfMarc Espie
okay martynas@
2013-07-15bring reference C code that's not compiled in synch with asm codeMarc Espie
okay martynas@
2013-07-15add some missing asm functions to vax: long double as aliases to double,Marc Espie
and float functions by cvtfd/cvtdf (like in netbsd) scalbnf will have to wait, as it's more complicated... brings vax in line with the rest. okay miod@/martynas@
2013-07-13Remove no longer needed vax CFLAGS workarounds.Miod Vallat
2013-07-12major bump after asr symbols changesEric Faurot
2013-07-12Make some symbols static and prefix all visible symbols with asr_Eric Faurot
to prevent collisions with third-party programs. suggested by sthen@, ok theo@
2013-07-11Merge fuse_opt code with stsp@ fuse_opt code.syl
ok tedu@
2013-07-10rfc 3493 obsoletes 2553. i spotted this after reading hiroki sato's changesJason McIntyre
in freebsd src commit r253066. our man pages had been updated, but i must have missed the following: - getnameinfo.3: 2553 -> 3493 - ip6.4: we listed both. remove 2553.
2013-07-06functions, not macros; from Daniel DickmanJason McIntyre
ok guenther
2013-07-05ELF_TOOLCHAIN bye bye.Miod Vallat
2013-07-05VAX ELF userland bits. Consists mostly of register prefix additions.Miod Vallat
2013-07-05Add support for fuse_teardown(3). This functionsyl
is needed by zipfs. ok tedu@
2013-07-05various tidy up;Jason McIntyre
ok tedu sobrado Sylvestre Gallon
2013-07-05... and gain rintf by using the same technique, along with aliases forMarc Espie
ceill/floorl okay martynas@, checked for build by miod@ as well. (note that these don't require bumps, as vax has no shared libraries...)
2013-07-05implement floorf and ceilf: same technique as floor and ceil, just withMarc Espie
appropriate constant to the mantissa size (and document what L is along the way). okay martynas@, tested by miod@ for results
2013-07-04remove FILES sections because it's incomplete, wrong and doesn't giveAlexandre Ratchov
any useful information
2013-07-04shorten lines in literal blocks to avoid word wrapingAlexandre Ratchov
2013-07-03reorganize NOIEEE_SRCS so that files not compiled on vax becauseMarc Espie
of assembly version are obvious. Move cproj/cprojf to the PURE club, as the asm support code provides copysignf okay martynas@
2013-07-03with DBL vs LDBL fixed, tedu some source in noieee which is actually theMarc Espie
same as code in generic src. introduce PURE_SRCS for completely MI math code. okau martynas@
2013-07-03test LDBL_MANT_DIG == DBL_MANT_DIG instead of hardcoding 53.Marc Espie
-> test becomes meaningful on vax No actual change, no bump okay martynas@
2013-07-01Link sqlite3(1) against libedit and add an empty history.h header forMartin Pieuchot
compatibility with GNU realine. ok mikeb@, sthen@, espie@
2013-06-29do not use Sx for sections outwith the page;Jason McIntyre
man4 still to go...
2013-06-25nmask and omask only used on ELF. Noted by todd@Philip Guenther
2013-06-25zap trailing whitespace;Jason McIntyre
2013-06-25bring return value of pcap_breakloop in sync with reality.Sebastian Reitenbach
OK jmc@
2013-06-24space needed before punctuation;Jason McIntyre
2013-06-21Make fuse device clonable.syl
ok tedu@
2013-06-21The bind lock must only be grabbed with all signals masked.Philip Guenther
backtrace of example case from sthen@ ok kettenis@ millert@
2013-06-21Move the declaration of _thread_sys_sigprocmask() to rthread.hPhilip Guenther
2013-06-19Do not install pcap-int.h to /usr/include as it is an internal libraryLawrence Teo
header (pointed out by matthew@). Let only pflogd and tcpdump include pcap-int.h directly since they need it for privilege separation. "looks good" sthen feedback/ok deraadt matthew millert
2013-06-17these libraries are either obsolete or got moved to kerberosV/libRobert Nagy
2013-06-17Add support for the _POSIX_CPUTIME and _POSIX_THREAD_CPUTIME options,Philip Guenther
including CLOCK_{PROCESS,THREAD}_CPUTIME_ID constants and {clock,pthread}_getcpuclockid() functions. Worked out at t2k13 with help from tedu@ and matthew@ and testing by aja@ ok matthew@
2013-06-15s/zlib/fuse/ in comment.Jasper Lievisse Adriaanse
2013-06-14style change.syl
2013-06-14hard code default values in the struct stat returned by getattr.syl
Some poor fuse client does not set all the struct stat fields... OK pirofti@ and beck@
2013-06-14Add support for fuse_get_context(3) needed by ntfs-3g.syl
OK pirofti@ and beck@ "assuming I am getting to setting the initial pid/gid/uid values correctly soon".
2013-06-14add support for fuse_version(3). Needed by ntfs-3g.syl
Ok beck@ and pirofti@.