2011-09-02 18:23:13 +00:00
|
|
|
// This file is part of BOINC.
|
|
|
|
// http://boinc.berkeley.edu
|
|
|
|
// Copyright (C) 2011 University of California
|
|
|
|
//
|
|
|
|
// BOINC is free software; you can redistribute it and/or modify it
|
|
|
|
// under the terms of the GNU Lesser General Public License
|
|
|
|
// as published by the Free Software Foundation,
|
|
|
|
// either version 3 of the License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// BOINC is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
// See the GNU Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public License
|
|
|
|
// along with BOINC. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2017-04-08 06:54:49 +00:00
|
|
|
#ifndef BOINC_PROC_CONTROL_H
|
|
|
|
#define BOINC_PROC_CONTROL_H
|
2011-09-02 18:23:13 +00:00
|
|
|
|
|
|
|
#include <vector>
|
2011-10-24 23:38:19 +00:00
|
|
|
#ifdef _WIN32
|
|
|
|
#include <windows.h>
|
|
|
|
#endif
|
2011-09-02 18:23:13 +00:00
|
|
|
|
|
|
|
extern void get_descendants(int pid, std::vector<int>& pids);
|
|
|
|
extern bool any_process_exists(std::vector<int>& pids);
|
|
|
|
extern void kill_all(std::vector<int>& pids);
|
|
|
|
#ifdef _WIN32
|
|
|
|
extern void kill_descendants();
|
2012-12-12 00:05:40 +00:00
|
|
|
extern int suspend_or_resume_threads(
|
|
|
|
std::vector<int> pids, DWORD threadid, bool resume, bool check_exempt
|
|
|
|
);
|
2011-09-02 18:23:13 +00:00
|
|
|
#else
|
|
|
|
extern void kill_descendants(int child_pid=0);
|
|
|
|
#endif
|
2012-12-12 00:05:40 +00:00
|
|
|
extern void suspend_or_resume_descendants(bool resume);
|
2011-09-02 18:23:13 +00:00
|
|
|
extern void suspend_or_resume_process(int pid, bool resume);
|
|
|
|
|
2014-10-13 18:35:16 +00:00
|
|
|
extern int process_priority_value(int);
|
|
|
|
|
2011-09-02 18:23:13 +00:00
|
|
|
#endif
|