summaryrefslogtreecommitdiffstats
path: root/usr.sbin/procctl/procctl.c
blob: ae3894bb20ec25334bf15cc4b5bf81c76069f8ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/*
 * procctl -- clear the event mask, and continue, any specified processes.
 * This is largely an example of how to use the procfs interface; however,
 * for now, it is also sometimes necessary, as a stopped process will not
 * otherwise continue.  (This will be fixed in a later version of the
 * procfs code, almost certainly; however, this program will still be useful
 * for some annoying circumstances.)
 */
/*
 * $Id: procctl.c,v 1.1 1997/12/06 04:19:09 sef Exp $
 */

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include <err.h>
#include <signal.h>
#include <fcntl.h>
#include <sys/ioctl.h>
#include <sys/pioctl.h>

main(int ac, char **av) {
  int fd;
  int i;
  unsigned int mask;
  char **command;
  struct procfs_status pfs;

  for (i = 1; i < ac; i++) {
    char buf[32];

    sprintf(buf, "/proc/%s/mem", av[i]);
    fd = open(buf, O_RDWR);
    if (fd == -1) {
      if (errno == ENOENT)
	continue;
      fprintf(stderr, "%s:  cannot open pid %s:  %s\n",
	      av[0], av[i], strerror(errno));
      continue;
    }
    if (ioctl(fd, PIOCBIC, ~0) == -1) {
      fprintf(stderr, "%s:  cannot clear process %s's event mask: %s\n",
	      av[0], av[i], strerror(errno));
    }
    if (ioctl(fd, PIOCCONT, 0) == -1 && errno != EINVAL) {
      fprintf(stderr, "%s:  cannot continue process %s:  %s\n",
	      av[0], av[i], strerror(errno));
    }
    close(fd);
  }
  return 0;
}
OpenPOWER on IntegriCloud