Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-08-07 | simple inaccurate implementation of lrint* functions on vax, just so | Marc Espie | |
we have them. Compiles on vax. okay martynas@ | |||
2013-08-06 | When writing a new record in pw_copy() print the uid and gid as | Todd C. Miller | |
unsigned, just like we do the existing records. OK deraadt@ | |||
2013-08-06 | Remove support for COMPILER_VERSION == gcc2. | Miod Vallat | |
Change the logic depending upon COMPILER_VERSION everywhere, to assume gcc4 is the norm and to explicitely test for gcc3 when a different behaviour is required. No functional change intended. Be sure to `make install' in share/mk before attempting to do anything. | |||
2013-08-06 | scalbnf on vax, okay miod@ | Marc Espie | |
2013-08-05 | tgamma(+-0) == +-Inf | Mark Kettenis | |
ok martynas@ | |||
2013-08-03 | KERN_PROC_BYPID --> KERN_FILE_BYPID | Philip Guenther | |
pointed out by Dominique Laigle (dlaigle (at) gmail.com) | |||
2013-08-02 | Fix a couple of corner cases in the implementation of pow(3) to make it | Mark Kettenis | |
compatible with C99. Most notably: - 1**y == 1, even if y is NaN - (-1)**+-Inf == 1 and adjust the cephes testsuite to test for the right thing here. ok martynas@ | |||
2013-08-01 | Add linker warnings for rand() and random() and various related functions. | Mark Kettenis | |
ok deraadt@ | |||
2013-07-31 | remove complete balony description of the setprogname() interface [as | Theo 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-30 | Free 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-30 | Stop overwriting the dying thread's struct thread as its tid member may | Philip Guenther | |
be concurrently updated by __threxit() prompted by a report from Alf Schlichting (a.schlichting (at) lemarit.com) ok kettenis@ | |||
2013-07-29 | fix 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-20 | sync with the actual definition of struct statfs in <sys/mount.h>; ok jmc@ | Christian Weisgerber | |
2013-07-18 | HISTORY; tweaks and ok sobrado@ jmc@ | Ingo Schwarze | |
2013-07-17 | missing symbol rename. | Eric Faurot | |
2013-07-17 | more library history | Ingo Schwarze | |
facts checked by sobrado@ style tweaks and ok jmc@ | |||
2013-07-16 | use .Mt for email addresses; from Jan Stary <hans at stare dot cz>; ok jmc@ | Ingo Schwarze | |
2013-07-16 | more macro simplification; from Jan Stary | Jason McIntyre | |
2013-07-16 | non[ -]existing -> non-existent; | Jason McIntyre | |
2013-07-15 | Fix atan2f() and hypotf() by actually converting both their arguments to the | Miod Vallat | |
larger type and passing them both the the double routine. | |||
2013-07-15 | use 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-15 | use atan2f to add atanf | Marc Espie | |
okay martynas@ | |||
2013-07-15 | bring reference C code that's not compiled in synch with asm code | Marc Espie | |
okay martynas@ | |||
2013-07-15 | add 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-13 | Remove no longer needed vax CFLAGS workarounds. | Miod Vallat | |
2013-07-12 | major bump after asr symbols changes | Eric Faurot | |
2013-07-12 | Make 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-11 | Merge fuse_opt code with stsp@ fuse_opt code. | syl | |
ok tedu@ | |||
2013-07-10 | rfc 3493 obsoletes 2553. i spotted this after reading hiroki sato's changes | Jason 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-06 | functions, not macros; from Daniel Dickman | Jason McIntyre | |
ok guenther | |||
2013-07-05 | ELF_TOOLCHAIN bye bye. | Miod Vallat | |
2013-07-05 | VAX ELF userland bits. Consists mostly of register prefix additions. | Miod Vallat | |
2013-07-05 | Add support for fuse_teardown(3). This function | syl | |
is needed by zipfs. ok tedu@ | |||
2013-07-05 | various tidy up; | Jason McIntyre | |
ok tedu sobrado Sylvestre Gallon | |||
2013-07-05 | ... and gain rintf by using the same technique, along with aliases for | Marc 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-05 | implement floorf and ceilf: same technique as floor and ceil, just with | Marc Espie | |
appropriate constant to the mantissa size (and document what L is along the way). okay martynas@, tested by miod@ for results | |||
2013-07-04 | remove FILES sections because it's incomplete, wrong and doesn't give | Alexandre Ratchov | |
any useful information | |||
2013-07-04 | shorten lines in literal blocks to avoid word wraping | Alexandre Ratchov | |
2013-07-03 | reorganize NOIEEE_SRCS so that files not compiled on vax because | Marc Espie | |
of assembly version are obvious. Move cproj/cprojf to the PURE club, as the asm support code provides copysignf okay martynas@ | |||
2013-07-03 | with DBL vs LDBL fixed, tedu some source in noieee which is actually the | Marc Espie | |
same as code in generic src. introduce PURE_SRCS for completely MI math code. okau martynas@ | |||
2013-07-03 | test 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-01 | Link sqlite3(1) against libedit and add an empty history.h header for | Martin Pieuchot | |
compatibility with GNU realine. ok mikeb@, sthen@, espie@ | |||
2013-06-29 | do not use Sx for sections outwith the page; | Jason McIntyre | |
man4 still to go... | |||
2013-06-25 | nmask and omask only used on ELF. Noted by todd@ | Philip Guenther | |
2013-06-25 | zap trailing whitespace; | Jason McIntyre | |
2013-06-25 | bring return value of pcap_breakloop in sync with reality. | Sebastian Reitenbach | |
OK jmc@ | |||
2013-06-24 | space needed before punctuation; | Jason McIntyre | |
2013-06-21 | Make fuse device clonable. | syl | |
ok tedu@ | |||
2013-06-21 | The bind lock must only be grabbed with all signals masked. | Philip Guenther | |
backtrace of example case from sthen@ ok kettenis@ millert@ | |||
2013-06-21 | Move the declaration of _thread_sys_sigprocmask() to rthread.h | Philip Guenther | |