aboutsummaryrefslogtreecommitdiffhomepage
path: root/proc.h
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2013-12-26 12:24:00 -0800
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2013-12-26 12:24:00 -0800
commit924b8cbe24023985d7bafcec7b79303e2e7cc2e4 (patch)
treea347fbe0c992ffb403d1ecbc20390e4db18a22a4 /proc.h
parent5b1a53265233f837e272aa0936267e04c8848856 (diff)
New ideas about how to use new parser for execution. Beginnings of
implementation.
Diffstat (limited to 'proc.h')
-rw-r--r--proc.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/proc.h b/proc.h
index a8f26a5e..0a2949ca 100644
--- a/proc.h
+++ b/proc.h
@@ -20,6 +20,7 @@
#include "util.h"
#include "io.h"
#include "common.h"
+#include "parse_tree.h"
/**
The status code use when a command was not found
@@ -151,7 +152,9 @@ public:
INTERNAL_EXEC, or INTERNAL_BUFFER
*/
enum process_type_t type;
-
+
+ /* For internal block processes only, the node offset of the block */
+ node_offset_t internal_block_node;
/** Sets argv */
void set_argv(const wcstring_list_t &argv)