summaryrefslogtreecommitdiff
path: root/eg/shmkill
blob: f3d4aecb1872386f51fbe69980786eb86e312d10 (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
#!/usr/bin/perl

# $Header: shmkill,v 3.0 89/10/18 15:16:09 lwall Locked $

# A script to call from crontab periodically when people are leaving shared
# memory sitting around unattached.

open(ipcs,'ipcs -m -o|') || die "Can't run ipcs: $!";

while (<ipcs>) {
    $tmp = index($_,'NATTCH');
    $pos = $tmp if $tmp >= 0;
    if (/^m/) {
	($m,$id,$key,$mode,$owner,$group,$attach) = split;
	if ($attach != substr($_,$pos,6)) {
	    die "Different ipcs format--can't parse!\n";
	}
	if ($attach == 0) {
	    push(@goners,'-m',$id);
	}
    }
}

exec 'ipcrm', @goners if $#goners >= 0;