History log of /freebsd-10.0-release/usr.sbin/procctl/procctl.c
Revision Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
# 259065 07-Dec-2013 gjb

- Copy stable/10 (r259064) to releng/10.0 as part of the
10.0-RELEASE cycle.
- Update __FreeBSD_version [1]
- Set branch name to -RC1

[1] 10.0-CURRENT __FreeBSD_version value ended at '55', so
start releng/10.0 at '100' so the branch is started with
a value ending in zero.

Approved by: re (implicit)
Sponsored by: The FreeBSD Foundation

# 256281 10-Oct-2013 gjb

Copy head (r256279) to stable/10 as part of the 10.0-RELEASE cycle.

Approved by: re (implicit)
Sponsored by: The FreeBSD Foundation


# 114601 03-May-2003 obrien

Use __FBSDID over rcsid[]. Protect copyright[] where needed.


# 57373 21-Feb-2000 ru

Fix a buffer overflow.

PR: 16415
Submitted by: Kevin Day <toasty@dragondata.com>
Approved by: jkh


# 50479 27-Aug-1999 peter

$Id$ -> $FreeBSD$


# 32273 05-Jan-1998 charnier

Use err(3). Change Synopsis to SYNOPSIS (needed for macro expansion) and
add SEE ALSO.


# 31897 20-Dec-1997 sef

Add a copyright and license statement, at the request of Jordan.


# 31691 13-Dec-1997 sef

Change the ioctls for procfs around a bit; in particular, whever possible,
change from

ioctl(fd, PIOC<foo>, &i);

to

ioctl(fd, PIOC<foo>, i);

This is going from the _IOW to _IO ioctl macro. The kernel, procctl, and
truss must be in synch for it all to work (not doing so will get errors about
inappropriate ioctl's, fortunately). Hopefully I didn't forget anything :).


# 31565 06-Dec-1997 sef

First checkin of the procctl program.