| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
| |
Submitted by: Steve G. Kargl <kargl@troutmask.apl.washington.edu>
Repair corrupted text.
|
|
|
|
|
|
| |
overwrites it. This actually showed up when running under an old
kernel when free() called the madvise() stub which set errno, causing
getcwd() to return EOPNOTSUPP instead of ERANGE.
|
|
|
|
| |
do not exist in NetBSD 1.3.
|
|
|
|
|
|
|
| |
Added EOPNOTSUPP and EMLINK to errors section.
Added symlink(2) xref.
Obtained from: OpenBSD
|
| |
|
| |
|
|
|
|
| |
Obtained from: OpenBSD
|
| |
|
|
|
|
|
|
|
| |
long and use %ld, not %d.
We're going to need an abbreviation for this comment 'cause it's going
to be used a lot from now on.
|
|
|
|
|
|
| |
sysconf(_SC_NGROUPS_MAX).
Submitted by: bde
|
|
|
|
| |
Added $Id$.
|
|
|
|
| |
Tiny pointed hat goes to: Our Makefile-meister.
|
|
|
|
| |
Obtained from: OpenBSD
|
|
|
|
| |
Obtained from: OpenBSD
|
|
|
|
| |
Obtained from: OpenBSD
|
|
|
|
|
|
| |
Document the special case of gidsetlen == 0.
Partially obtained from: OpenBSD
|
| |
|
|
|
|
| |
Screwed up by: myself
|
|
|
|
| |
Obtained from: OpenBSD
|
|
|
|
| |
Obtained from: OpenBSD
|
|
|
|
| |
Obtained from: OpenBSD
|
|
|
|
|
|
|
| |
Correct a grammatical error.
Add cross-reference to setrlimit(2).
Obtained from: OpenBSD
|
|
|
|
| |
more work when we get a half-way usable libc (which is next).
|
| |
|
| |
|
| |
|
|
|
|
| |
necessary evil due to the 108 byte setsockopt() limit).
|
| |
|
|
|
|
|
|
|
|
| |
stale obj directory and we wouldn't want to do that! I trust he knows
what he's talking about. 8-)
Also avoid building libm at all until the NetBSD asm code is imported.
I wrongly commented this out last time. Oops.
|
| |
|
|
|
|
|
| |
Obtained from: Yes development tree (+ 10 lines of patches from
Charles Mott, original libalias author)
|
|
|
|
| |
libraries first and use NetBSD's libc/libm for now.
|
|
|
|
|
|
|
|
|
|
|
| |
that this source is compiled against. This source is referenced by
install which is needed as a build tool and must be able to compile
against NetBSD headers and libraries if we have a hope of supporting
another architecture.
With this change, that's two working programs down and 3945 (?) to go.
The other one was make, but that didn't need any changes to work under
FreeBSD/Alpha. 8-)
|
|
|
|
|
|
| |
to another architecture (in this case the Alpha) we can continue to use
the host csu objects (from NetBSD). This should be a non-function change
to FreeBSD/i386.
|
|
|
|
|
| |
Reviewed by: guido
Obtained from: OpenBSD (Theo de Raadt)
|
| |
|
|
|
|
|
| |
in arguments length INT_MAX overflow check
Suggested-by: bde
|
| |
|
| |
|
|
|
|
|
|
| |
2) Fix winsdel called in last line of the window (nothing happens in
old variant)
3) Add range checks to wscrl() and internal soft scroll function
|
|
|
|
|
|
| |
display.
Submitted by: Kouichi Hirabayashi <kh@mogami-wire.co.jp>
|
|
|
|
|
|
|
|
|
|
| |
case has very little to do with the output size being larger than
INT_MAX.
2. The new #include of <limits.h> was disordered.
3. The new declaration of `on' was disordered (integer types go together).
4. Testing an unsigned value for > 0 was fishy.
Submitted by: bde
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
mlock, mmap, mprotect, msync, munlock, and munmap are defined by
POSIX as taking void *. The const modifier has been added to
mlock, munlock, and mprotect as the standard dictates.
minherit comes from OpenBSD and has been updated to conform with
their recent change to void *.
madvise and mincore are not defined by POSIX, but their arguments
have been modified to be consistent with the POSIX-defined functions.
mincore takes a const pointer, but madvise does not due to the
MADV_FREE case.
Discussed with: bde
|
|
|
|
| |
Pointed out by: bde
|
| |
|
| |
|
|
|
|
|
|
|
|
|
| |
at the first position on either of the last two lines of the
screen. Ie. append contents of current line to the previous
line and scroll the next line's contents up.
PR: 5392
Submitted by: Kouichi Hirabayashi <kh@mogami-wire.co.jp>
|
| |
|
|
|
|
|
| |
pr: docs/5260
submitted-by: Niall Smart [3]njs3@doc.ic.ac.uk
|