]> jspc29.x-matter.uni-frankfurt.de Git - daqdata.git/commitdiff
New script for cleanup of not killed evtbuild processes and remaining shared mem...
authorhadaq <hadaq>
Tue, 24 Aug 2010 08:24:09 +0000 (08:24 +0000)
committerhadaq <hadaq>
Tue, 24 Aug 2010 08:24:09 +0000 (08:24 +0000)
disks/cleanup_evtbuild.pl [new file with mode: 0755]

diff --git a/disks/cleanup_evtbuild.pl b/disks/cleanup_evtbuild.pl
new file mode 100755 (executable)
index 0000000..f026fd4
--- /dev/null
@@ -0,0 +1,68 @@
+#!/usr/bin/perl -w
+
+use strict;
+use Data::Dumper;
+
+#- Kill daq_evtbuild or daq_netmem if remained
+
+my $pname = "daq_netmem";
+my @out_list = `ps -C $pname`;
+&killSoftProcs(\@out_list, $pname);
+sleep 1;
+@out_list = `ps -C $pname`;
+&killHardProcs(\@out_list, $pname);
+
+$pname = "daq_evtbuild";
+@out_list = `ps -C $pname`;
+&killSoftProcs(\@out_list, $pname);
+sleep 1;
+@out_list = `ps -C $pname`;
+&killHardProcs(\@out_list, $pname);
+
+#- Remove shared memory segments if remained
+
+my $shm_dir = "/dev/shm";
+
+opendir(DIR, $shm_dir) or die "Could not open $shm_dir: $!";
+
+my @shm_list = grep(/\w+\.shm/, readdir(DIR));
+
+foreach my $shmem (@shm_list){
+    my $cmd = "rm $shm_dir/$shmem";
+    #print "cmd: $cmd\n";
+    system($cmd);
+}
+
+################### END OF MAIN ###################
+
+sub killSoftProcs()
+{
+    my ($list_aref, $proc_name) = @_;
+
+    foreach my $line (@$list_aref){
+       $line =~ s/^\s+//;  # remove leading spaces
+       if( $line =~ /$proc_name/ ){
+           my @items = split( /\s+/, $line );
+           my $PID = $items[0];
+
+           system("kill $PID");
+       }
+    }
+}
+
+sub killHardProcs()
+{
+    my ($list_aref, $proc_name) = @_;
+
+    foreach my $line (@$list_aref){
+
+       if( $line =~ /$proc_name/ ){
+           $line =~ s/^\s+//;  # remove leading spaces
+           my @items = split( /\s+/, $line );
+
+           my $PID = $items[0];
+
+           system("kill -9 $PID");
+       }
+    }
+}