| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
|
| |
causing pre-processed manual pages, like terminfo(5), to point to
the temporary build tree.
Notes:
svn path=/head/; revision=64245
|
| |
|
|
|
|
|
| |
$HOME in ruserpass()
Notes:
svn path=/head/; revision=64243
|
| |
|
|
|
|
|
| |
hardcoded value.
Notes:
svn path=/head/; revision=64242
|
| |
|
|
| |
Notes:
svn path=/head/; revision=64241
|
| |
|
|
| |
Notes:
svn path=/head/; revision=64240
|
| |
|
|
| |
Notes:
svn path=/head/; revision=64239
|
| |
|
|
| |
Notes:
svn path=/head/; revision=64237
|
| |
|
|
| |
Notes:
svn path=/head/; revision=64236
|
| |
|
|
|
|
|
| |
This is the documented size which the user-provided buffer must be.
Notes:
svn path=/head/; revision=64233
|
| |
|
|
| |
Notes:
svn path=/head/; revision=64222
|
| |
|
|
|
|
|
|
|
|
| |
prototypes, and adding in several 'const's. Also, add some missing
$FreeBSD$'s.
Found by: BDECFLAGS
Notes:
svn path=/head/; revision=64185
|
| |
|
|
| |
Notes:
svn path=/head/; revision=64129
|
| |
|
|
|
|
|
| |
POSIX/SUSv2.
Notes:
svn path=/head/; revision=64111
|
| |
|
|
| |
Notes:
svn path=/head/; revision=64106
|
| |
|
|
|
|
|
|
|
|
| |
character, skip the program name when setting the process title.
Ansified with extreme prejudice.
Reviewed by: peter
Notes:
svn path=/head/; revision=64094
|
| |
|
|
|
|
|
|
| |
Fix an overlong line and trailing whitespace that crept in, in the
previous commit.
Notes:
svn path=/head/; revision=64061
|
| |
|
|
| |
Notes:
svn path=/head/; revision=64042
|
| |
|
|
| |
Notes:
svn path=/head/; revision=64006
|
| |
|
|
|
|
|
|
|
| |
was not fun and I am not entirely certain of the correctness, but it seems
to work. (in fact, side by side testing of this code vs the x86 version
turned up hidden bugs in the x86 code).
Notes:
svn path=/head/; revision=64004
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
| |
testing and real-life applications:
1) If you returned from the thread function, you got a segv instead of
calling _exit() with your return code.
2) clean up some bogus stack management. There was also an underflow
on function return.
3) when making syscalls, the kernel is expecting to have to leave space
for the function's return address. We need to duplicate this. It was
an accident that the rfork syscall actually worked here. :-/
Notes:
svn path=/head/; revision=64003
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
the number of times I have given this to people and got asked: why isn't
it in libc? It is impossible to do this without assembler glue to reset
the stack for the new child process.
int rfork_thread(flags, stack_addr, start_fnc, start_arg)
int flags; Flags to rfork system call. See rfork(2).
void *stack_addr; Top of stack for thread.
int (*start_fnc)(void *); Address of thread function to call in child.
void *start_arg; Argument to pass to the thread function in child.
This is deliberately not documented or prototyped in includes until the
corresponding alpha version is written.
Notes:
svn path=/head/; revision=64000
|
| |
|
|
|
|
|
| |
This Is A Hack(TM).
Notes:
svn path=/head/; revision=63988
|
| |
|
|
| |
Notes:
svn path=/head/; revision=63948
|
| |
|
|
|
|
|
|
|
|
| |
preserve them only partially, so tty state becomes different after el_*
functions used.
PR: 20138
Notes:
svn path=/head/; revision=63947
|
| |
|
|
|
|
|
| |
whith characters conversion changed like \n -> \r\n and so on.
Notes:
svn path=/head/; revision=63946
|
| |
|
|
|
|
|
|
|
|
| |
means that the server doesn't understand SIZE or MDTM, which should not be a
hard failure.
Submitted by: ume
Notes:
svn path=/head/; revision=63910
|
| |
|
|
|
|
|
| |
many times.
Notes:
svn path=/head/; revision=63900
|
| |
|
|
|
|
|
|
|
|
|
| |
Quicktime streaming media applications.
Add a BUGS section to the man page.
Submitted by: Erik Salander <erik@whistle.com>
Notes:
svn path=/head/; revision=63899
|
| |
|
|
| |
Notes:
svn path=/head/; revision=63851
|
| |
|
|
|
|
|
|
|
|
|
|
| |
a bug in some ftp servers (most notably ftp.vmunix.com) which report the
size of a file correctly in ascii mode, but report it as 0 in binary mode.
Reported by: asmodai
Also remove an unneeded initialization.
Notes:
svn path=/head/; revision=63847
|
| |
|
|
|
|
|
|
| |
Work around YA Apache bug: don't send port in Host: header if it's the
default port.
Notes:
svn path=/head/; revision=63842
|
| |
|
|
|
|
|
|
|
| |
* Grammar fixes.
* Mark up rfork and vnode as cross-references.
* Clarify the use of the RFFDG flag to rfork(2).
Notes:
svn path=/head/; revision=63805
|
| |
|
|
|
|
|
|
|
|
| |
KERN_UPDATEINTERVAL can't be used to control sched_sync(). In
fact, there's no easy way to control the syncer with sysctls.
Reported by: bde
Notes:
svn path=/head/; revision=63757
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Sort out the size / length confusion. Always try to report the *real* file
size in the url_stat structure, no matter how much of it is actually being
sent, and try to detect inconsistencies between sizes.
Rearrange the request loop to avoid having to add meaningless code just to
silence compiler warnings.
Switch to a more sensible and consistent interface for the _http_parse*()
functions.
Notes:
svn path=/head/; revision=63716
|
| |
|
|
| |
Notes:
svn path=/head/; revision=63715
|
| |
|
|
| |
Notes:
svn path=/head/; revision=63713
|
| |
|
|
| |
Notes:
svn path=/head/; revision=63712
|
| |
|
|
|
|
|
|
|
|
| |
This fixes a segfault in some C++ programs which use exceptions before
main() has been called (i.e. from global constructors).
Reviewed by: deischen
Notes:
svn path=/head/; revision=63710
|
| |
|
|
|
|
|
| |
potential cancellation point in libc_r.
Notes:
svn path=/head/; revision=63704
|
| |
|
|
|
|
|
|
|
|
|
| |
32-bit type (rather than define his own type based on the type of box
being compiled on).
Submitted by: Mark Abene <phiber@radicalmedia.com>
(however I applied a slightly different fix)
Notes:
svn path=/head/; revision=63692
|
| |
|
|
|
|
|
| |
Obtained from: KAME Project
Notes:
svn path=/head/; revision=63682
|
| |
|
|
|
|
|
| |
Pointed out by: sheldonh
Notes:
svn path=/head/; revision=63639
|
| |
|
|
| |
Notes:
svn path=/head/; revision=63635
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
| |
strdup()) rather than pointing it at something that's free()d
(via freeaddrinfo(res)) before the function returns.
I appreciate that this is an API change, but it's the only way
(AFAIK) of doing this without breaking existing code that uses
rcmd{,_af}().
Pointed out by: phkmalloc
Notes:
svn path=/head/; revision=63622
|
| |
|
|
| |
Notes:
svn path=/head/; revision=63585
|
| |
|
|
|
|
|
|
|
| |
than requested. Instead, inform the caller of the real offset by modifying
the offset field in the original struct url, and let him decide how to handle
the situation.
Notes:
svn path=/head/; revision=63567
|
| |
|
|
| |
Notes:
svn path=/head/; revision=63541
|
| |
|
|
|
|
|
| |
syncer(4) manual page.
Notes:
svn path=/head/; revision=63498
|
| |
|
|
|
|
|
|
|
|
|
| |
be treated as NULL.
PR: bin/19816
Submitted by: Bill Fenner <fenner@research.att.com>
Reviewed by: Atsushi Onoe <onoe@sm.sony.co.jp>
Notes:
svn path=/head/; revision=63490
|
| |
|
|
| |
Notes:
svn path=/head/; revision=63474
|