diff options
| author | Vijay Bellur <vijay@gluster.com> | 2009-08-15 12:58:08 +0000 | 
|---|---|---|
| committer | Anand V. Avati <avati@dev.gluster.com> | 2009-08-19 17:57:53 -0700 | 
| commit | b4d6c3d1bb461d2c8a396c9ed3881a4da40fc6ab (patch) | |
| tree | 7a5a15665d46a91b9d4d744b0da599c4628d7f6c /libglusterfs/src/stack.h | |
| parent | a31b0016347b3bc9b341fa0f4541ed137224f593 (diff) | |
TAKE2[PATCH BUG:213 1/1] Support for Process State Dump
Support for process state dump.
Signed-off-by: Anand V. Avati <avati@dev.gluster.com>
BUG: 213 (Support for process state dump)
URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=213
Diffstat (limited to 'libglusterfs/src/stack.h')
| -rw-r--r-- | libglusterfs/src/stack.h | 6 | 
1 files changed, 5 insertions, 1 deletions
diff --git a/libglusterfs/src/stack.h b/libglusterfs/src/stack.h index e7c1cbd152d..94297255607 100644 --- a/libglusterfs/src/stack.h +++ b/libglusterfs/src/stack.h @@ -1,4 +1,4 @@ -/* +/*     Copyright (c) 2006-2009 Z RESEARCH, Inc. <http://www.zresearch.com>    This file is part of GlusterFS. @@ -74,6 +74,7 @@ struct _call_frame_t {  	int32_t       ref_count;  	gf_lock_t     lock;  	void         *cookie;      /* unique cookie */ +	gf_boolean_t  complete;  };  struct _call_stack_t { @@ -208,6 +209,7 @@ STACK_DESTROY (call_stack_t *stack)  		_parent->ref_count--;					\                  old_THIS = THIS;                                        \                  THIS = _parent->this;                                   \ +                frame->complete = _gf_true;                             \  		fn (_parent, frame->cookie, _parent->this, params);	\                  THIS = old_THIS;                                        \  	} while (0) @@ -281,5 +283,7 @@ create_frame (xlator_t *xl, call_pool_t *pool)  	return &stack->frames;  } +void +gf_proc_dump_pending_frames(call_pool_t *call_pool);  #endif /* _STACK_H */  | 
