cctools
rmonitor.h
1 /*
2 Copyright (C) 2013- The University of Notre Dame This software is
3 distributed under the GNU General Public License. See the file
4 COPYING for details.
5 */
6 
7 #ifndef __RMONITOR_H
8 #define __RMONITOR_H
9 
10 #include "rmsummary.h"
11 
12 #define RESOURCE_MONITOR_ENV_VAR "CCTOOLS_RESOURCE_MONITOR"
13 
14 
28 char *resource_monitor_rewrite_command(const char *cmdline, const char *monitor_path, const char *template_filename, const char *limits_filename,
29  const char *extra_monitor_options,
30  int summary, int time_series, int opened_files);
31 
39 char *resource_monitor_copy_to_wd(const char *path_from_cmdline);
40 
42 struct rmsummary *resident_monitor_parse_resources_file(const char *filename);
43 
48 char *resource_monitor_locate(const char *path_from_cmdline);
49 
50 #endif
Definition: rmsummary.h:24