205335 Commits

Author SHA1 Message Date
wiz
369bd71deb Consistently spell MS-DOS with a hyphen. From Snader_LB. 2011-09-15 09:44:59 +00:00
wiz
4285677d6b Add argument in options table. Resize to fit. 2011-09-15 09:40:57 +00:00
wiz
826f78a987 Mark file argument(s) as being optional (as does the usage message
from fold.c, which is correct); minor spelling correction; note
`width' as being an argument to `-w'; reference fmt(1) in `SEE
ALSO' section.

From Snader_LB.
2011-09-15 09:39:57 +00:00
wiz
19ea2ccd09 Various fixes, mostly missing words or letters. 2011-09-15 09:14:54 +00:00
christos
7efa108354 add h{create,destroy,search}_r 2011-09-14 23:37:32 +00:00
christos
711f328e6e add re-entrant versions of the hash api based on the GNU extensions. 2011-09-14 23:34:26 +00:00
christos
05845f985a add re-entrant versions of the hash functions based on the GNU api. 2011-09-14 23:33:51 +00:00
reinoud
89e01a7315 Code audit revealed missing brackets and a silly old constant of 1024
lingering around. Fixed with the right values.
2011-09-14 19:45:27 +00:00
reinoud
a353dd16f3 Make stacksize of newly spawn lwp's bigger than one page. Actually use the
variable stack_size now
2011-09-14 18:30:13 +00:00
reinoud
fa8df51a50 Implement in-place execution for binaries! No more MKPIE/MKPIC for userland
anymore!
2011-09-14 18:28:36 +00:00
reinoud
d48a18a7e3 Provide thunk fuction to return the host machine's VM_MIN_ADDRESS 2011-09-14 18:26:24 +00:00
apb
0d2b74d766 When using random versions of make to try to find the TOOLDIR,
redirect 2>/dev/null.  This should hide error messages like
"*** missing separator.  Stop." when GNU make doesn't
understand ".include".
2011-09-14 17:35:44 +00:00
christos
c3ffa13cb0 PR/45367: Grégoire Sutre: don't depend on m4-ccas and cpp-ccas to be
executable; invoke the shell to run them.
2011-09-14 16:35:22 +00:00
christos
3eb92d7759 PR/45308: Manuel Bouyer: Update list of broadcast addresses after updating
interfaces.
2011-09-14 16:18:29 +00:00
christos
508745a56a include wakecode after kernel rules so that the .depend rules are defined 2011-09-14 14:59:29 +00:00
christos
fe07a757f1 revert previous; bug was in the position of the inclusion of the file. 2011-09-14 14:58:43 +00:00
christos
a19015af6d include wakecode after so that the depend rules are defined! 2011-09-14 14:58:08 +00:00
martin
2f1110cffe A test case may not assume opening /dev/tty does something sensible. 2011-09-14 14:34:37 +00:00
jruoho
484972bd18 Fix bug/oversight. 2011-09-14 13:47:40 +00:00
jruoho
ea461b7aa2 Additions to PR lib/45362: the float variants cosf(3), sinf(3), and tanf(3)
do not detect NaN for positive and negative infinity on i386 (qemu).
2011-09-14 13:29:58 +00:00
christos
8f0814daf5 Don't depend on the .d file here; since this is the only rule, acpi_wakeup.d
will never be build!
2011-09-14 13:13:21 +00:00
christos
e375a9464f more sys/param.h additions 2011-09-14 12:37:55 +00:00
christos
c719768729 fix fprintfs with no format strings. 2011-09-14 12:35:19 +00:00
christos
f5b92a169e - don't if then else the same thing. print a more meaningful message
- don't leak a dictionary on failure
- minor KNF
2011-09-14 12:30:20 +00:00
christos
70ae357e3d don't increment the number of referenced module as a side effect if we fail.
From jmcneill
2011-09-14 12:29:22 +00:00
christos
747c11eab6 Can't use RUN_ONCE here to initialize the futex_lock, otherwise we cannot
unload the module.
2011-09-14 12:28:08 +00:00
apb
f29014459b There's no st_block field; it's st_blocks. 2011-09-14 11:49:21 +00:00
njoly
85ae540813 Kill empty Dv macro. 2011-09-14 11:43:29 +00:00
rkujawa
f2b08a0344 Fix typo, add missing include (make this compile again). 2011-09-14 09:19:09 +00:00
jruoho
8c901a0444 Use fabsf(3) when appropriate. 2011-09-14 06:50:43 +00:00
jruoho
8f667ecf71 Some tests for sine, cosine, and tangent. 2011-09-14 05:18:18 +00:00
christos
42d1e41665 print the missing flag if missing argument... 2011-09-13 19:55:28 +00:00
christos
aaddf8990f avoid type punning 2011-09-13 19:35:12 +00:00
gdt
bcb68cbe5c Reduce verbosity of semi-debug coda_inactive printf.
Rather than print if the usecount is > 0, only print if it is greater
than 1.  It seems 1 is normal.
2011-09-13 19:34:27 +00:00
christos
24fd4911c2 Use c99 struct initializers so that this compiles. 2011-09-13 19:21:20 +00:00
christos
80867328b8 Include <sys/param.h> for MAXPATHLEN 2011-09-13 19:11:09 +00:00
christos
76389f09e9 fix non-portable shift. 2011-09-13 19:10:18 +00:00
christos
71faa8a7e1 Some versions of linux have probably marked fwrite(3) as
__attribute__((__warn_unused_result__)) and the __builtin_expect()
use here is an attempt to silence the warning. This does not work
if the second argument of __builtin_expect() is not a constant,
but we are not linux, so instead of going through the
__builtin_constant_p() dance to correct this, just disable it for
non linux OS's.
2011-09-13 19:07:44 +00:00
dyoung
351c7b7b28 Clean up a bit: delete #if 1 and its corresponding #endif. 2011-09-13 18:09:52 +00:00
dyoung
e95aa499d6 Name arguments in a couple of prototypes before the arguments are
referred to by name.  Bump date.
2011-09-13 18:07:22 +00:00
dyoung
166f28ddff Bump date for previous change. 2011-09-13 18:05:20 +00:00
dyoung
a156c8bc88 Name arguments in a couple of prototypes before the arguments are
referred to by name.
2011-09-13 18:04:54 +00:00
dyoung
2a35d669c2 For consistency, call a bus_dma_tag_t bdt instead of bst. No functional
change intended.
2011-09-13 17:59:46 +00:00
dyoung
2c7ac85415 Bracket a debugging printf() with #ifdef DEBUG. 2011-09-13 17:58:42 +00:00
plunky
c8157303ac this HAVE_PCC is not (any longer) required 2011-09-13 14:00:08 +00:00
reinoud
515a85d45d Add missing processor status flag file i forgot to add 2011-09-13 11:22:07 +00:00
reinoud
fed9a7ba09 Forgot the clock 2011-09-13 10:42:34 +00:00
reinoud
1b737a9a66 Remove excess signal stack declarations and remove the clock and ld signals
from the signal stack since they are only issued shortly.
2011-09-13 10:40:26 +00:00
reinoud
cfcb954ea9 Implement pmap_protect() and pmap_remove_all() 2011-09-13 10:38:48 +00:00
reinoud
ada358e9e2 Keep processing since we *might* have missed one during execution 2011-09-13 10:38:04 +00:00