- VboxWrapper: Add a way to extract the VM process id from the VM's

log file.
        
    samples/vboxwrapper/
        vbox.cpp, .h

svn path=/trunk/boinc/; revision=24112
This commit is contained in:
Rom Walton 2011-09-02 00:19:05 +00:00
parent f6a12075af
commit a6de614071
3 changed files with 966 additions and 903 deletions

View File

@ -5481,3 +5481,10 @@ David 1 Sept 2011
samples/wrapper/
wrapper.cpp
Rom 1 Sept 2011
- VboxWrapper: Add a way to extract the VM process id from the VM's
log file.
samples/vboxwrapper/
vbox.cpp, .h

File diff suppressed because it is too large Load Diff

View File

@ -59,9 +59,10 @@ struct VBOX_VM {
int set_network_access(bool enabled);
int set_cpu_usage_fraction(double);
int set_network_max_bytes_sec(double);
int get_vm_process_id(long& process_id);
static int initialize();
static int generate_vm_root_dir( std::string& dir );
static int generate_vm_root_dir(std::string& dir);
static int vbm_popen(std::string&, std::string&);
static int get_install_directory(std::string&);
};