diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2006-01-08 22:41:22 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2006-01-08 22:41:22 +0000 |
commit | 13a0b6b58f5304310ca093e9a5ad2d656db904cf (patch) | |
tree | 617f5c7cab61098b66a3c04557a9980e981e798e | |
parent | de83cee28b204740aa0801283c5fa22830d70a3c (diff) | |
download | external_llvm-13a0b6b58f5304310ca093e9a5ad2d656db904cf.zip external_llvm-13a0b6b58f5304310ca093e9a5ad2d656db904cf.tar.gz external_llvm-13a0b6b58f5304310ca093e9a5ad2d656db904cf.tar.bz2 |
Add some documentation.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25150 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/System/Program.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/llvm/System/Program.h b/include/llvm/System/Program.h index 8ac421b..fea94d3 100644 --- a/include/llvm/System/Program.h +++ b/include/llvm/System/Program.h @@ -50,6 +50,8 @@ namespace sys { /// executed. It is presumed this is the result of the FindProgramByName /// method. /// @returns an integer result code indicating the status of the program. + /// A zero or positive value indicates the result code of the program. A + /// negative value is the signal number on which it terminated. /// @throws std::string on a variety of error conditions or if the invoked /// program aborted abnormally. /// @see FindProgrambyName |