Age | Commit message (Collapse) | Author | |
---|---|---|---|
2005-12-19 | Use __BSD_VISIBLE instead of _POSIX_SOURCE to avoid pulling | Todd C. Miller | |
in most of machine/endian.h. OK espie@ | |||
2005-12-19 | Make T1 mode work -- tested against an old dusty lmc(4) if found somewhere. | Claudio Jeker | |
2005-12-19 | Check or chop the timeslot map if the map or mode is changed. There is no way | Claudio Jeker | |
you can do 32 timeslots on a T1. | |||
2005-12-19 | Be not too verbose else the debug output would stall a box if the wrong | Claudio Jeker | |
mode is selected. Default debug output in the interrupt handler is not very clever -- even if it is not compiled in by default. | |||
2005-12-19 | fix rev 1.9 | Brad Smith | |
pthread_concurrency -> pthread_setconcurrency | |||
2005-12-19 | Add and use a few more constants and macros needed by UFS2 | Pedro Martelletto | |
No functional change | |||
2005-12-19 | r.i.p. libresolv | Jason McIntyre | |
ok pval | |||
2005-12-19 | this file didn't exist in 2004, so copyright must be 2005 | Ted Unangst | |
2005-12-19 | update copyright to 2005 | Ted Unangst | |
2005-12-19 | add pthread_get/set_concurrency (useless for now) | Ted Unangst | |
add pthread_get/set_stack[addr] (info not used yet) | |||
2005-12-19 | after mutex_unlock, there's no guarantee that a waiting thread will | Ted Unangst | |
start running. calling pthread_yield makes test pass with rthreads | |||
2005-12-19 | sanity check for key_delete was missing ! | Ted Unangst | |
2005-12-18 | Grok NORETURN function prototypes in addition to NORETURN function | Chad Loder | |
definitions. | |||
2005-12-18 | Update my e-mail address in the copyright statement, no binary changes. | Reyk Floeter | |
2005-12-18 | Update my e-mail address in the copyright statement, no binary changes. | Reyk Floeter | |
2005-12-18 | Update my e-mail address in the copyright statement, no binary changes. | Reyk Floeter | |
2005-12-18 | Typo; p/o kustov@telex221.ru. | Alexander Yurchenko | |
2005-12-18 | Fix some signed vs. unsigned issues found by lint. OK krw@ | Todd C. Miller | |
2005-12-18 | add back comment about wrong code | Nikolay Sturm | |
ok marco | |||
2005-12-18 | Don't include cdefs.h if _LOCORE is defined and hide some more defines | Todd C. Miller | |
unless __BSD_VISIBLE or _LOCORE are set. OK deraadt@ | |||
2005-12-18 | Apparently the Scanlogic SL11R is not UFI, and correctly identifies itself as | Mark Kettenis | |
SCSI. From NetBSD. Tested by me. ok krw@ | |||
2005-12-18 | Indicate that the flags are exclusive, mention realm in the description | Bjorn Sandell | |
for K and remove an error case for kerberos that doesn't apply nowdays. with jmc@ | |||
2005-12-18 | Add bits string for smbus host status register to be able to | Alexander Yurchenko | |
print it with %b. | |||
2005-12-18 | Add SMBus controller registers. | Alexander Yurchenko | |
2005-12-18 | rename test functions with meaningful names instead of 1 2 3, etc. | Brad Smith | |
From libevent CVS | |||
2005-12-18 | Fix condition so "BIOS fixup botch" can, unlikely as it is, be | Kenneth R Westerback | |
detected. Found by lint. ok millert@ | |||
2005-12-18 | initialize all spinlocks to _SPINLOCK_UNLOCKED | Ted Unangst | |
2005-12-18 | if not a newer chip then print i82557, all fxp's attached to the ICH | Brad Smith | |
chipsets are i82562. | |||
2005-12-17 | revert last commit as it introduced system panics due to improper use | Brad Smith | |
of bpf_mtap(). | |||
2005-12-17 | spelling: intented -> intended | Kevin Steves | |
2005-12-17 | more PCI ids. | Brad Smith | |
2005-12-17 | regen | Brad Smith | |
2005-12-17 | add a few more fxp PCI ids. | Brad Smith | |
2005-12-17 | spelling: fowarding, fowarded | Kevin Steves | |
2005-12-17 | Remove duplicate definition of machFPCurProcPtr. | Mark Kettenis | |
ok pefo@, miod@ | |||
2005-12-17 | Handle __dead functions using lint comments. | Chad Loder | |
2005-12-17 | This driver had no chances to work. Still has some issues. | Alexander Yurchenko | |
2005-12-17 | Kill unreachable code. Found by lint. | Kenneth R Westerback | |
ok kettenis@ deraadt@ pedro@ miod@ | |||
2005-12-17 | Document PT_STEP (better late than never), and group the machine-dependent | Miod Vallat | |
request with a (fixed) list of arches for each; tweaks and ok jmc@ kettenis@ | |||
2005-12-17 | Check for functions declared with ARGSUSED but having no arguments. | Chad Loder | |
2005-12-17 | Let the xtlb refill handler fault if the userland va is out of the supported | Miod Vallat | |
address space instead of using the tlb of the va modulo the address space size. ok pefo@ | |||
2005-12-17 | Rename ``dofault'' label to ``fault_common'', it just looks too close to | Miod Vallat | |
``default'' and thus can make your code reading experience more difficult... | |||
2005-12-17 | regen | Brad Smith | |
2005-12-17 | add ICH7 fxp PCI id. | Brad Smith | |
2005-12-17 | Add some tests with modulus operator too | Chad Loder | |
2005-12-17 | Avoid sign extend when writing time stamps; fixes "tar: Ustar header | Otto Moerbeek | |
field is too small for foo" error messages when writing files with negative time stamps on 64 bit archs. ok millert@ deraadt@ | |||
2005-12-17 | Replace 'while (j>=0)' constructs with safer, more KNF friendly for() | Kenneth R Westerback | |
loops because j is unsigned. Comments from Marco Hyman and Andreas Gunnarson fixed my first version. Spotted by lint. 'go for it' deraadt@ for initial version. | |||
2005-12-17 | remove extra space in output of router LSA; ok claudio@ | Kevin Steves | |
2005-12-17 | Fix PT_{GET|SET}FPREGS. Make sure we flush the fpu before reading/modifying | Mark Kettenis | |
the state in the pcb. Make sure we don't thrash the initial fpu state for (currently unsupported) 32-bit processes. ok miod@ | |||
2005-12-17 | Fix handling of floating-point registers in PT_{GET|SET}REGS. | Mark Kettenis | |
ok miod@ |