summaryrefslogtreecommitdiff
path: root/usr.sbin/procctl/procctl.c
Commit message (Collapse)AuthorAgeFilesLines
* Whack procctl(8)Mateusz Guzik2017-09-271-79/+0
| | | | | | | | | | | | | | It was supposed to provide a recovery mechanism against bugs in procfs's long deprecated tracing capabilities. Remove the tool as a prerequisite to axing the kernel side. The tracing facility to use is ptrace(2). MFC after: 2 weeks Notes: svn path=/head/; revision=324042
* Use __FBSDID over rcsid[]. Protect copyright[] where needed.David E. O'Brien2003-05-031-4/+2
| | | | Notes: svn path=/head/; revision=114601
* Fix a buffer overflow.Ruslan Ermilov2000-02-211-2/+2
| | | | | | | | | PR: 16415 Submitted by: Kevin Day <toasty@dragondata.com> Approved by: jkh Notes: svn path=/head/; revision=57373
* $Id$ -> $FreeBSD$Peter Wemm1999-08-281-1/+1
| | | | Notes: svn path=/head/; revision=50479
* Use err(3). Change Synopsis to SYNOPSIS (needed for macro expansion) andPhilippe Charnier1998-01-051-20/+16
| | | | | | | add SEE ALSO. Notes: svn path=/head/; revision=32273
* Add a copyright and license statement, at the request of Jordan.Sean Eric Fagan1997-12-201-1/+33
| | | | Notes: svn path=/head/; revision=31897
* Change the ioctls for procfs around a bit; in particular, whever possible,Sean Eric Fagan1997-12-131-5/+3
| | | | | | | | | | | | | | | | | 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 :). Notes: svn path=/head/; revision=31691
* First checkin of the procctl program.Sean Eric Fagan1997-12-061-0/+55
Notes: svn path=/head/; revision=31565