File: process.h

package info (click to toggle)
kaptain 1%3A0.73-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 928 kB
  • ctags: 773
  • sloc: cpp: 4,153; makefile: 14
file content (15 lines) | stat: -rw-r--r-- 279 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef PROCESS_HH
#define PROCESS_HH

#include <list>
#include <string>

using namespace std;

void clean_up_child_process(int);
void POSIX_init();
int exec_async(list<string> &);
string exec_sync_stdout(string &);
string exec_sync_stdout(list<string> &);

#endif // PROCESS_HH