Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoreutarass2010-09-17 21:05:44 +0000
committereutarass2010-09-17 21:05:44 +0000
commitb3381c8653c09395c50adabd30501457b942f7c4 (patch)
treede89b0d478b415f7a84fe197034d4e4b6be42743 /framework/context.h
parentf4991f07e3a22fdd34b6a059349c1918c9302da9 (diff)
downloadorg.eclipse.tcf.agent-b3381c8653c09395c50adabd30501457b942f7c4.tar.gz
org.eclipse.tcf.agent-b3381c8653c09395c50adabd30501457b942f7c4.tar.xz
org.eclipse.tcf.agent-b3381c8653c09395c50adabd30501457b942f7c4.zip
TCF Agent: fixed few spelling errors in code comments
Diffstat (limited to 'framework/context.h')
-rw-r--r--framework/context.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/framework/context.h b/framework/context.h
index c87d7431..79907b56 100644
--- a/framework/context.h
+++ b/framework/context.h
@@ -40,7 +40,7 @@ typedef void ContextAttachCallBack(int, Context *, void *);
struct Context {
char id[256]; /* context ID */
char * name; /* human readable context name */
- LINK cldl; /* link that used to form a list of context chidren */
+ LINK cldl; /* link that used to form a list of context children */
LINK ctxl; /* link that used to form a list of all contexts */
LINK children; /* context children double linked list */
Context * parent; /* context parent */
@@ -57,9 +57,9 @@ struct Context {
int exited; /* context exited */
int event_notification; /* set to 1 when calling one of ContextEventListener call-backs for this context */
int pending_intercept; /* host is waiting for this context to be suspended */
- unsigned long pending_signals; /* bitset of signals that were received, but not handled yet */
- unsigned long sig_dont_stop; /* bitset of signals that should not be intercepted by the debugger */
- unsigned long sig_dont_pass; /* bitset of signals that should not be delivered to the context */
+ unsigned long pending_signals; /* bit set of signals that were received, but not handled yet */
+ unsigned long sig_dont_stop; /* bit set of signals that should not be intercepted by the debugger */
+ unsigned long sig_dont_pass; /* bit set of signals that should not be delivered to the context */
int signal; /* signal that stopped this context */
};

Back to the top