diff options
| author | Tofu Linden <tofu.linden@lindenlab.com> | 2010-04-29 11:32:42 +0100 |
|---|---|---|
| committer | Tofu Linden <tofu.linden@lindenlab.com> | 2010-04-29 11:32:42 +0100 |
| commit | fee6f311d310dccfa3ae5f28a9911a2d5b7e7d62 (patch) | |
| tree | b8ba490183411702dca18cde30ad6e70dff2a2d5 /indra/llplugin/llpluginprocessparent.h | |
| parent | 8413842ff763f0a6b8a8d7e5ff51989e42a4d148 (diff) | |
| parent | a0527cb6f728a2814fdf8b0fa6f149c7041efcac (diff) | |
merge from viewer-trunk
Diffstat (limited to 'indra/llplugin/llpluginprocessparent.h')
| -rw-r--r-- | indra/llplugin/llpluginprocessparent.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/indra/llplugin/llpluginprocessparent.h b/indra/llplugin/llpluginprocessparent.h index cc6c513615..31f125bfb3 100644 --- a/indra/llplugin/llpluginprocessparent.h +++ b/indra/llplugin/llpluginprocessparent.h @@ -74,6 +74,9 @@ public: // returns true if the process has exited or we've had a fatal error bool isDone(void); + // returns true if the process is currently waiting on a blocking request + bool isBlocked(void) { return mBlocked; }; + void killSockets(void); // Go to the proper error state @@ -160,6 +163,7 @@ private: bool mDisableTimeout; bool mDebug; + bool mBlocked; LLProcessLauncher mDebugger; |
