aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm
diff options
context:
space:
mode:
Diffstat (limited to 'include/llvm')
-rw-r--r--include/llvm/System/Program.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/include/llvm/System/Program.h b/include/llvm/System/Program.h
index 177fa7c..7f96245 100644
--- a/include/llvm/System/Program.h
+++ b/include/llvm/System/Program.h
@@ -29,6 +29,9 @@ namespace sys {
/// @since 1.4
/// @brief An abstraction for finding and executing programs.
class Program {
+ /// Opaque handle for target specific data.
+ void *Data;
+
unsigned Pid_;
// Noncopyable.
@@ -39,9 +42,9 @@ namespace sys {
/// @{
public:
- Program() : Pid_(0)
- {}
-
+ Program();
+ ~Program();
+
/// Return process ID of this program.
unsigned GetPid() { return Pid_; }