diff options
author | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2010-01-07 14:59:20 -0500 |
---|---|---|
committer | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2010-01-07 14:59:20 -0500 |
commit | 6b8ed2ae6f92d6f9559cbc86699b9ca3197f2e81 (patch) | |
tree | 31919a63096b8d245bd0b834879139c9d9a82129 /indra/llplugin/llpluginprocesschild.cpp | |
parent | e55193cf85e285ba229254994d88d7a875b82ef6 (diff) | |
parent | b552f7efe94af690006ae3567eb1dbe289618c01 (diff) |
merge
Diffstat (limited to 'indra/llplugin/llpluginprocesschild.cpp')
-rw-r--r-- | indra/llplugin/llpluginprocesschild.cpp | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/indra/llplugin/llpluginprocesschild.cpp b/indra/llplugin/llpluginprocesschild.cpp index ccf6dab942..07fc82c770 100644 --- a/indra/llplugin/llpluginprocesschild.cpp +++ b/indra/llplugin/llpluginprocesschild.cpp @@ -54,8 +54,14 @@ LLPluginProcessChild::~LLPluginProcessChild() if(mInstance != NULL) { sendMessageToPlugin(LLPluginMessage("base", "cleanup")); - delete mInstance; - mInstance = NULL; + + // IMPORTANT: under some (unknown) circumstances the apr_dso_unload() triggered when mInstance is deleted + // appears to fail and lock up which means that a given instance of the slplugin process never exits. + // This is bad, especially when users try to update their version of SL - it fails because the slplugin + // process as well as a bunch of plugin specific files are locked and cannot be overwritten. + exit( 0 ); + //delete mInstance; + //mInstance = NULL; } } |