diff options
Diffstat (limited to 'runtime/utils.h')
-rw-r--r-- | runtime/utils.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/runtime/utils.h b/runtime/utils.h index 5f53608f65..67438b5881 100644 --- a/runtime/utils.h +++ b/runtime/utils.h @@ -175,13 +175,6 @@ bool GetDalvikCacheFilename(const char* file_location, const char* cache_locatio // Returns the system location for an image std::string GetSystemImageFilename(const char* location, InstructionSet isa); -// Wrapper on fork/execv to run a command in a subprocess. -// Both of these spawn child processes using the environment as it was set when the single instance -// of the runtime (Runtime::Current()) was started. If no instance of the runtime was started, it -// will use the current environment settings. -bool Exec(std::vector<std::string>& arg_vector, std::string* error_msg); -int ExecAndReturnCode(std::vector<std::string>& arg_vector, std::string* error_msg); - // Returns true if the file exists. bool FileExists(const std::string& filename); bool FileExistsAndNotEmpty(const std::string& filename); |