| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
|
| |
the underlying file descriptor is also closed. To me at least this wasn't
immediately obvious.
Notes:
svn path=/head/; revision=47281
|
| |
|
|
| |
Notes:
svn path=/head/; revision=47249
|
| |
|
|
|
|
|
|
|
| |
prevent being rescheduled.
Submitted by: Dan Eischen <eischen@vigrid.com>
Notes:
svn path=/head/; revision=47244
|
| |
|
|
|
|
|
|
| |
Submitted by: Ralf S. Engelschall
Obtained from: PR i386/11713
Notes:
svn path=/head/; revision=47206
|
| |
|
|
| |
Notes:
svn path=/head/; revision=47205
|
| |
|
|
| |
Notes:
svn path=/head/; revision=47204
|
| |
|
|
|
|
|
|
| |
PR: 11687
Submitted by: Don Lewis <Don.Lewis@tsc.tdk.com>
Notes:
svn path=/head/; revision=47118
|
| |
|
|
|
|
|
| |
(Correctly handle 'wd' devices)
Notes:
svn path=/head/; revision=47090
|
| |
|
|
|
|
|
| |
that went away in January.
Notes:
svn path=/head/; revision=47018
|
| |
|
|
| |
Notes:
svn path=/head/; revision=46800
|
| |
|
|
|
|
|
| |
Obtained from: OpenBSD
Notes:
svn path=/head/; revision=46798
|
| |
|
|
|
|
|
| |
Enabled writing to the disklabel when writing a disk (only affects alpha).
Notes:
svn path=/head/; revision=46787
|
| |
|
|
|
|
|
| |
Submitted by: Daniel Eischen <eischen@vigrid.com>
Notes:
svn path=/head/; revision=46772
|
| |
|
|
| |
Notes:
svn path=/head/; revision=46771
|
| |
|
|
| |
Notes:
svn path=/head/; revision=46731
|
| |
|
|
| |
Notes:
svn path=/head/; revision=46722
|
| |
|
|
|
|
|
| |
Note that these are thus our a.out compatability libraries.
Notes:
svn path=/head/; revision=46705
|
| |
|
|
|
|
|
|
|
|
| |
have made the patch obsolete, as pointed out by Daniel Eischen
<eischen@vigrid.com>.
PR: bin/8872
Notes:
svn path=/head/; revision=46680
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
simple enough to be trusted.
Add account management functionality to the pam_unix module.
These changes should make it possible to use PAM in some ports.
Submitted by: Max Khon <fjoe@iclub.nsu.ru>
Notes:
svn path=/head/; revision=46665
|
| |
|
|
|
|
|
|
|
| |
Submitted by: Yung-Jen Hung <winard@u3717a.dorm.ccu.edu.tw>
Reviewed by: bearscorp.bbs@bbs.life.nthu.edu.tw
_BIG5_sgetrune() in libc doesn't work well, this commit will fix it.
Notes:
svn path=/head/; revision=46641
|
| |
|
|
|
|
|
|
|
|
|
| |
pthread_cond_timedwait() times out.
PR: bin/8872
Submitted by: Jason Evans <jasone@canonware.com>
Reviewed by: David Schwartz <davids@webmaster.com>
Notes:
svn path=/head/; revision=46628
|
| |
|
|
|
|
|
|
| |
PR: docs/11489
Submitted by: Andrew <andrew@ugh.net.au>
Notes:
svn path=/head/; revision=46461
|
| |
|
|
|
|
|
| |
Add 'ad' as another known disk driver of the same kind as 'wd'.
Notes:
svn path=/head/; revision=46455
|
| |
|
|
|
|
|
|
|
|
| |
UNIX domain socket on which connect(2) had been used to set a destination
address and the destination goes away.
PR: docs/10451
Notes:
svn path=/head/; revision=46441
|
| |
|
|
|
|
|
|
|
| |
PAGE_SIZE for sys/shm.h.
PR: docs/8464
Notes:
svn path=/head/; revision=46426
|
| |
|
|
|
|
|
| |
PR: docs/3522
Notes:
svn path=/head/; revision=46424
|
| |
|
|
| |
Notes:
svn path=/head/; revision=46395
|
| |
|
|
|
|
|
| |
calls properly.
Notes:
svn path=/head/; revision=46294
|
| |
|
|
|
|
|
|
|
| |
"passwordtime" is what passwd(1) has actually been using. I suspect
passwordperiod was the original intent. I can't figure-out which,
if either, BSDi uses. If anyone knows...
Notes:
svn path=/head/; revision=46209
|
| |
|
|
|
|
|
|
|
| |
and isspecial.
PR: docs/9854
Notes:
svn path=/head/; revision=46191
|
| |
|
|
|
|
|
| |
PR: docs/8858
Notes:
svn path=/head/; revision=46188
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This is a seriously beefed up chroot kind of thing. The process
is jailed along the same lines as a chroot does it, but with
additional tough restrictions imposed on what the superuser can do.
For all I know, it is safe to hand over the root bit inside a
prison to the customer living in that prison, this is what
it was developed for in fact: "real virtual servers".
Each prison has an ip number associated with it, which all IP
communications will be coerced to use and each prison has its own
hostname.
Needless to say, you need more RAM this way, but the advantage is
that each customer can run their own particular version of apache
and not stomp on the toes of their neighbors.
It generally does what one would expect, but setting up a jail
still takes a little knowledge.
A few notes:
I have no scripts for setting up a jail, don't ask me for them.
The IP number should be an alias on one of the interfaces.
mount a /proc in each jail, it will make ps more useable.
/proc/<pid>/status tells the hostname of the prison for
jailed processes.
Quotas are only sensible if you have a mountpoint per prison.
There are no privisions for stopping resource-hogging.
Some "#ifdef INET" and similar may be missing (send patches!)
If somebody wants to take it from here and develop it into
more of a "virtual machine" they should be most welcome!
Tools, comments, patches & documentation most welcome.
Have fun...
Sponsored by: http://www.rndassociates.com/
Run for almost a year by: http://www.servetheweb.com/
Notes:
svn path=/head/; revision=46155
|
| |
|
|
|
|
|
| |
mknod(2).
Notes:
svn path=/head/; revision=46150
|
| |
|
|
|
|
|
|
|
|
| |
filesystems with the "nosuid" option. Mention that syscall tracing
is disabled sometimes.
PR: misc/11328
Notes:
svn path=/head/; revision=46107
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
o use braces to avoid potentially ambiguous else
o don't default to type int (and also remove a useless register
modifier).
o Use parens around assignment values used as truth values.
o Remove unused function.
Reviewed by: obrien and chuckr
Notes:
svn path=/head/; revision=46079
|
| |
|
|
|
|
|
| |
fixed a typo on the man page.
Notes:
svn path=/head/; revision=46051
|
| |
|
|
|
|
|
|
|
|
|
| |
70-00 are intepreted in the 20th century; 01-69 in the
21st century. (Yes, 2000 is the last year of the 20th
century, not the first year of the 21st.)
Submitted by: Sergey Babkin <babkin@bellatlantic.net>
Notes:
svn path=/head/; revision=46042
|
| |
|
|
|
|
|
|
|
| |
PR: 11285
Submitted by: Chris Costello <chris@calldei.com>
Reviewed by: phk
Notes:
svn path=/head/; revision=46018
|
| |
|
|
| |
Notes:
svn path=/head/; revision=46004
|
| |
|
|
|
|
|
| |
- some NFSes have root read access disabled
Notes:
svn path=/head/; revision=46003
|
| |
|
|
|
|
|
| |
comment out unused functions from login_auth.3
Notes:
svn path=/head/; revision=46001
|
| |
|
|
|
|
|
|
| |
eliminates the need to include the dynamic linker's private header
file, as well as two other headers from <sys>.
Notes:
svn path=/head/; revision=45973
|
| |
|
|
| |
Notes:
svn path=/head/; revision=45942
|
| |
|
|
|
|
|
|
| |
This seems to have snuck back into the Makefile in an unrelated
commit (rev. 1.8).
Notes:
svn path=/head/; revision=45939
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
before.
Added SYS.h for mipseb and mipsel.
I now get part way through building libc in the cross environment that
I have (along with pending mipse[bl] changes to the intree egcs) with
these changes.
Notes:
svn path=/head/; revision=45931
|
| |
|
|
|
|
|
|
|
|
| |
function. It was an ill-considered feature. It didn't solve the
problem I wanted it to solve. And it added Yet Another Version
Number that would have to be maintained at every release point.
I'm nuking it now before anybody grows too fond of it.
Notes:
svn path=/head/; revision=45929
|
| |
|
|
|
|
|
| |
hang problem. A bug report has been sent to cygnus.
Notes:
svn path=/head/; revision=45926
|
| |
|
|
| |
Notes:
svn path=/head/; revision=45922
|
| |
|
|
|
|
|
| |
Prompted-By: Nathan Ahlstrom <nrahlstr@winternet.com>
Notes:
svn path=/head/; revision=45878
|
| |
|
|
| |
Notes:
svn path=/head/; revision=45861
|