Commit Graph

209805 Commits

Author SHA1 Message Date
christos
59e51bc4e6 fix typos. 2012-03-10 19:19:24 +00:00
christos
7fffb381da PR/46155: Miguel Piñeiro Jr: Fix RS processing. Apply the gawk-like patch
from the excellent PR. Many thanks for all the work you put on this,
explanation, tests, and patch!
2012-03-10 19:18:48 +00:00
christos
c513c5c06e add awk test directory 2012-03-10 19:11:36 +00:00
christos
8d1c40e771 add awk tests 2012-03-10 19:10:06 +00:00
christos
f70bd5ce19 PR/46155: Miguel Piñeiro Jr: awk RS handling is broken. Add the test cases
from the PR.
2012-03-10 19:08:56 +00:00
dsl
095ac4e735 Some FAT16 filesystems don't have 'hidden sectors' correctly set to
the offset of the filesystem on the disk.
Let '-b s1blk' be used to fix the value.
2012-03-10 18:42:18 +00:00
joerg
fa060fc8c7 Fix error handling 2012-03-10 18:01:10 +00:00
joerg
af435e468b Use correct size. 2012-03-10 18:01:09 +00:00
nonaka
2645273974 RTL8168E-VL support for re(4) and Family 12h support for amdtemp(4) in NetBSD 6.0. 2012-03-10 16:56:33 +00:00
nonaka
90a78b146e Note Family 12h support for amdtemp(4). 2012-03-10 16:02:56 +00:00
martin
aec05724e5 Remove a KPREEMPT_ENABLE() in an error path I overlooked in the previous
change - pointed out by Manuel Bouyer.
While there, add a KASSERT() to make sure we have preemption enabled in
the success case.
2012-03-10 14:35:05 +00:00
martin
f9619b6218 Make sure the child of a posix_spawn operation is not preempted during
the times when it does not have any vm_space.
Should fix PR kern/46153.
2012-03-10 08:46:45 +00:00
nakayama
0ee77e1078 Fix previous, which causes an integer overflow error in uvm_km.c on
32-bit kernels.
2012-03-10 07:54:17 +00:00
joerg
f36ba6b5ad sem_open and friends should return EINVAL if the semaphore is not valid. 2012-03-09 21:03:46 +00:00
joerg
a65b1aeb01 Disable reduced stack for now. It creates fallout I'm not willing to
deal with.
2012-03-09 21:03:09 +00:00
joerg
7baa2850f5 It is perfectly valid for sem_wait to be interrupted, so loop on EINTR. 2012-03-09 19:46:37 +00:00
ginsbach
4b1228ffbe Improve the handling of quoted messages.
- warn about messages with an unexpected quote character
- warn about extra characters after a quote character
- warn about an unterminated quoted message
2012-03-09 18:54:28 +00:00
christos
a5fd370a21 Casts and type changes to fix portability issues.
- int -> size_t
- adjust width of RHS of shift
- adjust widths of types
2012-03-09 15:41:16 +00:00
christos
8f10f9d00b use explicit cast for RHS of shift operator since semantics change from
traditional c to ansi.
2012-03-09 15:38:03 +00:00
christos
6be4f13626 Cast constants to the appropriate type. 2012-03-09 15:35:28 +00:00
christos
f6d789ff18 remove statement with no effect. 2012-03-09 15:24:34 +00:00
joerg
7d36dfce1b PR 43452 no longer applies. 2012-03-09 14:25:34 +00:00
drochner
da4ea9e87f fix a path 2012-03-09 12:30:28 +00:00
drochner
677d666c8d -fix initial stacksize rounding
-minor indentation fix
2012-03-09 12:06:44 +00:00
jdc
0d42f2f215 Restrict NKMEMPAGES to 2.5GB, otherwise we will run out of space in the
kernel_map on machines with 8GB (or more) main memory.

XXX: Moving KERNBASE/KERNEND is a better long term solution, but this allows
those machines to boot now.
2012-03-09 10:42:12 +00:00
njoly
92562600d4 On alpha compile the math library with dynamic rounding mode instead
of fixed normal IEEE rounding mode. This makes function that depends on
the current rounding mode, such as rint(3), just work.
2012-03-09 08:03:53 +00:00
christos
6799d6e664 add acl.c 2012-03-09 00:14:16 +00:00
jakllsch
7ced092c93 Restore parts of uhub_explore() needed to make usb_needs_reattach() work. 2012-03-09 00:12:10 +00:00
wiz
65ba3f7900 Use %U for URLs. 2012-03-08 22:52:22 +00:00
wiz
9c18a264d9 Add sem_timedwait to NAME and fix SYNOPSIS. Add serial comma. 2012-03-08 22:13:32 +00:00
wiz
6e8389e3bc Whitespace nits. 2012-03-08 22:13:05 +00:00
wiz
5f354a83a5 Merge error descriptions for same error code. 2012-03-08 22:12:52 +00:00
wiz
c744abbb43 Add missing comma. 2012-03-08 22:12:37 +00:00
joerg
4acff4c01b Implement sem_timedwait. 2012-03-08 21:59:24 +00:00
joerg
3bd1fd2afe Add entry for _ksem_timedwait. 2012-03-08 21:55:45 +00:00
christos
540f3eef91 Teach rcs about the new cvs "commitid" keyword, so that we don't bitch each
time we play with an RCS file maintained by CVS.
2012-03-08 21:32:28 +00:00
christos
75e57c5640 refresh autoconf infrastructure so that it has a fighting chance to work
with something not from the previous decade.
NB: I should eventually put back the OS specific stuff I've removed so
that we can have a complete distribution.
2012-03-08 20:54:18 +00:00
christos
00f7e7b88f prefer NULL over 0 2012-03-08 20:50:55 +00:00
christos
8182c8fa04 fix format string 2012-03-08 20:50:46 +00:00
christos
a3b3956a06 add cvs acl support 2012-03-08 20:50:26 +00:00
christos
286e174e7d Don't use %n in the writable data segment. Fortified glibc complains. When
the left hand does not communicate with the right hand.
2012-03-08 20:49:29 +00:00
christos
6c8d7be65d add acl support 2012-03-08 20:48:02 +00:00
christos
90cde42e32 - put back missing noexec check
- add cvs acl support
2012-03-08 20:47:45 +00:00
christos
9c245492c2 check symlink return 2012-03-08 20:47:17 +00:00
christos
99ced8ed96 add acl support 2012-03-08 20:46:59 +00:00
christos
e05cc624b8 in new format strings, formats are actually checked, so put tag commands in. 2012-03-08 20:46:35 +00:00
christos
09b7edcb8d check chdir return 2012-03-08 20:46:08 +00:00
christos
8fb428a11a - fix printf format string
- add acl support
2012-03-08 20:45:52 +00:00
christos
255af61e37 - add acl support
- document availability of tag commands.
2012-03-08 20:45:28 +00:00
christos
2d4ac8bd98 add acl prototype 2012-03-08 20:44:32 +00:00