diff options
Diffstat (limited to 'include/llvm/System/Program.h')
-rw-r--r-- | include/llvm/System/Program.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/llvm/System/Program.h b/include/llvm/System/Program.h index 3c9230c9e0..cef3805370 100644 --- a/include/llvm/System/Program.h +++ b/include/llvm/System/Program.h @@ -72,6 +72,10 @@ namespace sys { ///< expires, the child is killed and this call returns. If zero, ///< this function will wait until the child finishes or forever if ///< it doesn't. + unsigned memoryLimit = 0, ///< If non-zero, this specifies max. amount + ///< of memory can be allocated by process. If memory usage will be + ///< higher limit, the child is killed and this call returns. If zero - + ///< no memory limit. std::string* ErrMsg = 0 ///< If non-zero, provides a pointer to a string ///< instance in which error messages will be returned. If the string ///< is non-empty upon return an error occurred while invoking the |