master
Make CPU frequencies human readable with -h in `systat sensors`. ok miod@
use $OpenBSD markers ok millert mpi
Zap unused variables/functions under /usr/src/*bin/
Drop GCC_PRINTFLIKE() at function definition
Use nanosleep() and setitimer() instead of usleep() and ualarm(). Both usleep() and ualarm() are obsolete and were removed from POSIX. OK deraadt@
remove unneeded semicolons; checked by millert@
The POSIX APIs that that sockaddrs all ignore the s*_len field in the incoming socket, so userspace doesn't need to set it unless it has its own reasons for tracking the size along with the sockaddr.
Fix iostat per-device values when in boot time mode ('b'). The values should be displayed as-is and not normalized based on the sleep interval. From Anindya Mukherjee
ks_mapblocks is gone
print all the rings on a nic without limiting it to the number of mclpools
remove prototypes with no matching function
Show pf fragment reassembly counters.
fix indentation and remove uneeded braces feedback and ok tb@
MAXCOMLEN is no longer needed in these programs, so remove the annotation from sys/param.h include lines, or remove the include lines entirely if it this was the least requirement. ok millert
When system calls indicate an error they return -1, not some arbitrary value < 0. errno is only updated in this case. Change all (most?) callers of syscalls to follow this better, and let's see if this strictness helps us in the future.
Add new counters for lock upgrades.
remove prototypes with no matching function and externs with no var partly checked by millert@