Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.tcf.core/src/org/eclipse/tcf/services/ISysMonitor.java')
-rw-r--r--plugins/org.eclipse.tcf.core/src/org/eclipse/tcf/services/ISysMonitor.java25
1 files changed, 24 insertions, 1 deletions
diff --git a/plugins/org.eclipse.tcf.core/src/org/eclipse/tcf/services/ISysMonitor.java b/plugins/org.eclipse.tcf.core/src/org/eclipse/tcf/services/ISysMonitor.java
index 29621a5eb..639f1dcda 100644
--- a/plugins/org.eclipse.tcf.core/src/org/eclipse/tcf/services/ISysMonitor.java
+++ b/plugins/org.eclipse.tcf.core/src/org/eclipse/tcf/services/ISysMonitor.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2007, 2013 Wind River Systems, Inc. and others.
+ * Copyright (c) 2007, 2015 Wind River Systems, Inc. and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -234,6 +234,29 @@ public interface ISysMonitor extends IService {
/** Scheduling policy */
PROP_POLICY = "Policy";
+ /**
+ * Context property extension.
+ * @since 1.4
+ */
+ static final String
+ /** Full path to executable file of the process */
+ PROP_EXE = "Exe",
+
+ /** Executable type (integer). Value is one of:
+ * 0 = user process
+ * 1 = kernel thread
+ * 2 = access denied
+ * See also EXETYPE_* constants */
+ PROP_EXETYPE = "ExeType";
+
+ /**
+ * ExeType property values.
+ * @since 1.4
+ */
+ static final int
+ EXETYPE_USER = 0,
+ EXETYPE_KERNEL = 1,
+ EXETYPE_ACCESS_DENIED = 2;
/**
* A context corresponds to an execution thread, process, address space, etc.

Back to the top