Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPawel Piech2010-02-12 01:04:37 +0000
committerPawel Piech2010-02-12 01:04:37 +0000
commitb32a6f12b1c34b761011750bdf3936d797613c94 (patch)
tree18796ea6104a66aa149e6a8731fcfe13ebd01fdc /dsf/org.eclipse.cdt.dsf
parente5c877b268daee0a3bec37c5e226bd8c6da0e6e0 (diff)
downloadorg.eclipse.cdt-b32a6f12b1c34b761011750bdf3936d797613c94.tar.gz
org.eclipse.cdt-b32a6f12b1c34b761011750bdf3936d797613c94.tar.xz
org.eclipse.cdt-b32a6f12b1c34b761011750bdf3936d797613c94.zip
[249162] comment#9 - Adjusted error codes.
Diffstat (limited to 'dsf/org.eclipse.cdt.dsf')
-rw-r--r--dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/concurrent/IDsfStatusConstants.java4
1 files changed, 4 insertions, 0 deletions
diff --git a/dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/concurrent/IDsfStatusConstants.java b/dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/concurrent/IDsfStatusConstants.java
index 10052e73b55..50de8319c46 100644
--- a/dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/concurrent/IDsfStatusConstants.java
+++ b/dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/concurrent/IDsfStatusConstants.java
@@ -33,6 +33,10 @@ public interface IDsfStatusConstants {
* Error code indicating that client supplied an invalid handle to the service.
* A handle could become invalid after an object it represents is removed from
* the system.
+ * <p>
+ * Note this code should not be used when a handle is of a wrong type.
+ * That would be an incorrect use of an interface, i.e. an {@link #INTERNAL_ERROR}.
+ * </p>
*/
final static int INVALID_HANDLE = 10002;

Back to the top