~ubuntu-branches/debian/sid/boinc/sid

« back to all changes in this revision

Viewing changes to lib/procinfo.h

  • Committer: Bazaar Package Importer
  • Author(s): Steffen Moeller
  • Date: 2011-06-10 13:56:34 UTC
  • mfrom: (1.3.11 upstream)
  • Revision ID: james.westby@ubuntu.com-20110610135634-ya6h4pxygydy0civ
Tags: 6.12.32+dfsg-1
* New upstream version.
  - finally contains MAXPATHLEN fixes for building on HURD
  - fewer warnings while compiling (some Debian patches
    accepted)
* Initial preparations for merging with developments
  for Debian and beyond at SZTAKI, Budapest.
* amd64 package now explicitly presents itself also
  as i686 savvy as an alternative platform name and such such it now
  not only recommends but depends with its -client on ia32-lib
  (Closes: #562431) (lp: #560143).

Show diffs side-by-side

added added

removed removed

Lines of Context:
45
45
extern void procinfo_other(PROCINFO&, std::vector<PROCINFO>&);
46
46
        // After getting mem usage for all BOINC apps,
47
47
        // call this to get mem usage for everything else
 
48
extern void get_descendants(int pid, std::vector<int>& pids);
 
49
extern bool any_process_exists(std::vector<int>& pids);
 
50
extern void kill_all(std::vector<int>& pids);
 
51
#ifdef _WIN32
 
52
extern void kill_descendants();
 
53
#else
 
54
extern void kill_descendants(int child_pid=0);
 
55
#endif
 
56
extern void suspend_or_resume_descendants(int pid, bool resume);
 
57
extern void suspend_or_resume_process(int pid, bool resume);
48
58
 
49
59
#endif