phoenix-firestorm/indra/llcommon
Nat Goodspeed 87da08b1f4 DRTVWR-476, SL-13555: Don't crash if user closes viewer during login.
Ever since February 2010, the body of the login coroutine function has been
enclosed in try/catch (...), with an llerrs message to try to crash more
informatively than the runtime's unhandled-exception termination. Over the
years this evolved to LL_ERRS and then to CRASH_ON_UNHANDLED_EXCEPTION.

This persisted despite the August 2016 addition of generic catch clauses in
the LLCoros::toplevel() function to serve the same purpose, and despite the
subsequent introduction of the LLCoros::Stop family of exceptions to
deliberately throw into waiting coroutines on viewer shutdown.

That's exactly what was happening. When the user closed the viewer while
waiting for the response from login.cgi, the waiting operation threw
LLCoros::Stopping, which was caught by that CRASH_ON_UNHANDLED_EXCEPTION,
which crashed the viewer with LL_ERRS rather than propagating up to the
toplevel() and cleanly terminating the coroutine.

Change CRASH_ON_UNHANDLED_EXCEPTION() to LOG_UNHANDLED_EXCEPTION() and
re-throw so toplevel() can handle.
2020-07-07 14:48:36 -04:00
..
tests DRTVWR-476: LLMainThreadTask cross-thread test hangs. Skip. 2020-05-27 12:44:18 -04:00
CMakeLists.txt DRTVWR-476: Add unit tests for LLMainThreadTask. 2020-03-25 19:24:25 -04:00
StackWalker.cpp DRTVWR-476: Fix Windows line endings 2020-03-25 18:47:13 -04:00
StackWalker.h DRTVWR-476: Eliminate unnecessary typedefs from struct, enum decls. 2020-03-25 16:12:46 -04:00
ctype_workaround.h remove execute permission from many files that should not have it 2015-11-10 09:48:56 -05:00
fix_macros.h merge with 4.0.3-release 2016-04-04 15:53:09 -04:00
indra_constants.cpp Merge 6.3.1 viewer-release 2019-08-26 12:35:18 -07:00
indra_constants.h Merge 6.3.1 viewer-release 2019-08-26 12:35:18 -07:00
is_approx_equal_fraction.h remove execute permission from many files that should not have it 2015-11-10 09:48:56 -05:00
linden_common.h merge with 4.0.3-release 2016-04-04 15:53:09 -04:00
llalignedarray.h changed ll_aligned_(malloc|free) to take alignment size as a template argument 2013-10-14 10:18:41 -07:00
llallocator.cpp Automated merge with tip of viewer-release to pick up 4.0.5 2016-05-19 11:00:03 -07:00
llallocator.h remove execute permission from many files that should not have it 2015-11-10 09:48:56 -05:00
llallocator_heap_profile.cpp remove execute permission from many files that should not have it 2015-11-10 09:48:56 -05:00
llallocator_heap_profile.h remove execute permission from many files that should not have it 2015-11-10 09:48:56 -05:00
llapp.cpp DRTVWR-476: Terminate long-lived coroutines to avoid shutdown crash. 2020-03-25 19:02:24 -04:00
llapp.h SL-10291 Replace apr_atomic with standard C++11 functionality 2019-01-15 18:31:17 +02:00
llapr.cpp SL-10291 Replace apr_mutex with standard C++11 functionality 2019-01-14 22:04:44 +02:00
llapr.h DRTVWR-494: Encapsulate redundant VS boilerplate around <mutex>. 2020-03-25 15:28:17 -04:00
llassettype.cpp Mods to make merge with viewer-release have less whitespace-only change and fix diffs between EEP and VR. 2019-03-13 13:21:48 -07:00
llassettype.h Merge 2018-09-26 13:46:45 -07:00
llatomic.cpp SL-10291 Replace apr_atomic with standard C++11 functionality 2019-01-15 18:31:17 +02:00
llatomic.h SL-10291 Replace apr_atomic with standard C++11 functionality 2019-01-15 18:31:17 +02:00
llbase32.cpp remove execute permission from many files that should not have it 2015-11-10 09:48:56 -05:00
llbase32.h remove execute permission from many files that should not have it 2015-11-10 09:48:56 -05:00
llbase64.cpp remove execute permission from many files that should not have it 2015-11-10 09:48:56 -05:00
llbase64.h remove execute permission from many files that should not have it 2015-11-10 09:48:56 -05:00
llbitpack.cpp remove execute permission from many files that should not have it 2015-11-10 09:48:56 -05:00
llbitpack.h remove execute permission from many files that should not have it 2015-11-10 09:48:56 -05:00
llboost.h remove execute permission from many files that should not have it 2015-11-10 09:48:56 -05:00
llcallbacklist.cpp Modify importer to (optionally) improve debug output, perform name-based LOD association, and handle models with many materials. 2014-04-22 08:58:38 -07:00
llcallbacklist.h Modify importer to (optionally) improve debug output, perform name-based LOD association, and handle models with many materials. 2014-04-22 08:58:38 -07:00
llcallstack.cpp SL-315 - disable call stack dumping in release, where we don't have the info anyway. 2016-04-21 10:55:08 -04:00
llcallstack.h SL-859 - exceptionally verbose logging of object state updates, likely temporary 2018-01-29 16:35:56 +00:00
llcleanup.cpp MAINT-5232: Abbreviate __FILE__ path in log_subsystem_cleanup(). 2016-09-02 14:03:28 -04:00
llcleanup.h MAINT-5232: Move "llerror.h" out of llcleanup.h, llinitdestroyclass.h 2016-08-30 16:28:21 -04:00
llclickaction.h more cleanup 2013-07-30 19:14:19 -07:00
llcommon.cpp DRTVWR-418, MAINT-6996: Rationalize LLMemory wrt 64-bit support. 2017-05-02 10:51:18 -04:00
llcommon.h remove execute permission from many files that should not have it 2015-11-10 09:48:56 -05:00
llcommonutils.cpp remove execute permission from many files that should not have it 2015-11-10 09:48:56 -05:00
llcommonutils.h remove execute permission from many files that should not have it 2015-11-10 09:48:56 -05:00
llcond.h DRTVWR-476: Wrap boost::fibers::mutex et al. with LLCoros aliases. 2020-05-14 14:51:52 -04:00
llcoros.cpp DRTVWR-476: make printActiveCoroutines() output slightly clearer. 2020-03-25 19:25:42 -04:00
llcoros.h DRTVWR-476, SL-13555: Don't crash if user closes viewer during login. 2020-07-07 14:48:36 -04:00
llcrc.cpp remove execute permission from many files that should not have it 2015-11-10 09:48:56 -05:00
llcrc.h remove execute permission from many files that should not have it 2015-11-10 09:48:56 -05:00
llcriticaldamp.cpp remove execute permission from many files that should not have it 2015-11-10 09:48:56 -05:00
llcriticaldamp.h remove execute permission from many files that should not have it 2015-11-10 09:48:56 -05:00
lldate.cpp remove execute permission from many files that should not have it 2015-11-10 09:48:56 -05:00
lldate.h remove execute permission from many files that should not have it 2015-11-10 09:48:56 -05:00
lldeadmantimer.cpp merge with release 2014-02-24 18:45:59 -08:00
lldeadmantimer.h Code review updates. All comments so far. 2013-11-18 13:33:19 -05:00
lldefs.h remove execute permission from many files that should not have it 2015-11-10 09:48:56 -05:00
lldependencies.cpp MAINT-5011: Use LLTHROW() instead of plain BOOST_THROW_EXCEPTION(). 2016-08-17 11:36:24 -04:00
lldependencies.h DRTVWR-418: In 64 bits, storing size_t in an int is a no-no. 2016-12-01 08:44:52 -05:00
lldepthstack.h remove execute permission from many files that should not have it 2015-11-10 09:48:56 -05:00
lldictionary.cpp remove execute permission from many files that should not have it 2015-11-10 09:48:56 -05:00
lldictionary.h remove execute permission from many files that should not have it 2015-11-10 09:48:56 -05:00
lldoubledispatch.h remove execute permission from many files that should not have it 2015-11-10 09:48:56 -05:00
llendianswizzle.h remove execute permission from many files that should not have it 2015-11-10 09:48:56 -05:00
llerror.cpp SL-13361: Enable color processing on Windows 10 debug console. 2020-07-01 13:38:05 -04:00
llerror.h DRTVWR-476: Fix LLError::Log::classname(T*) template function. 2020-05-14 08:50:39 -04:00
llerrorcontrol.h DRTVWR-476: Make test program --debug switch work like LOGTEST=DEBUG. 2020-03-25 18:47:13 -04:00
llerrorlegacy.h remove execute permission from many files that should not have it 2015-11-10 09:48:56 -05:00
llerrorthread.cpp remove execute permission from many files that should not have it 2015-11-10 09:48:56 -05:00
llerrorthread.h remove execute permission from many files that should not have it 2015-11-10 09:48:56 -05:00
llevent.cpp remove execute permission from many files that should not have it 2015-11-10 09:48:56 -05:00
llevent.h remove execute permission from many files that should not have it 2015-11-10 09:48:56 -05:00
lleventapi.cpp remove execute permission from many files that should not have it 2015-11-10 09:48:56 -05:00
lleventapi.h remove execute permission from many files that should not have it 2015-11-10 09:48:56 -05:00
lleventcoro.cpp DRTVWR-476, SL-13512: Fix flawed fix for former failure. 2020-06-26 14:40:07 -04:00
lleventcoro.h SL-793: Use Boost.Fiber instead of the "dcoroutine" library. 2020-03-25 17:32:45 -04:00
lleventdispatcher.cpp remove execute permission from many files that should not have it 2015-11-10 09:48:56 -05:00
lleventdispatcher.h DRTVWR-418: Fix a round of compile errors surfaced by -std=c++11. 2017-02-23 16:49:49 -05:00
lleventemitter.h remove execute permission from many files that should not have it 2015-11-10 09:48:56 -05:00
lleventfilter.cpp DRTVWR-476: Defer #include "lleventtimer.h" until lleventfilter.cpp. 2020-03-25 19:00:10 -04:00
lleventfilter.h DRTVWR-476: Defer #include "lleventtimer.h" until lleventfilter.cpp. 2020-03-25 19:00:10 -04:00
llevents.cpp DRTVWR-476: Make ~LLEventPumps() call reset() on its way out. 2020-03-25 19:00:10 -04:00
llevents.h DRTVWR-476: Eliminate static LLEventPump factory maps. 2020-03-25 18:58:16 -04:00
lleventtimer.cpp DRTVWR-494: Streamline LLEventTimer::updateClass(). 2020-03-25 15:28:17 -04:00
lleventtimer.h DRTVWR-476: Add LLEventTimer::run_every(), run_at(), run_after(). 2020-03-25 18:59:10 -04:00
llexception.cpp DRTVWR-476: On Windows, use prebuilt Boost.Stacktrace. 2020-03-25 19:24:25 -04:00
llexception.h DRTVWR-476: Enrich LLExceptions thrown by LLTHROW() with stack trace. 2020-03-25 19:21:16 -04:00
llfasttimer.cpp DRTVWR-494: Defend LLInstanceTracker against multi-thread usage. 2020-03-25 15:28:17 -04:00
llfasttimer.h [DRTVWR-476] - update cef, fix merge 2020-03-25 18:40:45 -04:00
llfile.cpp SL-10153: Review and rationalize fetching paths from environment. 2018-12-14 15:38:13 -05:00
llfile.h DRTVWR-476: Add LLUniqueFile, adding RAII semantics to LLFILE*. 2020-03-25 19:05:17 -04:00
llfindlocale.cpp remove execute permission from many files that should not have it 2015-11-10 09:48:56 -05:00
llfindlocale.h remove execute permission from many files that should not have it 2015-11-10 09:48:56 -05:00
llfixedbuffer.cpp SL-10291 Replace apr_mutex with standard C++11 functionality 2019-01-14 22:04:44 +02:00
llfixedbuffer.h remove execute permission from many files that should not have it 2015-11-10 09:48:56 -05:00
llformat.cpp remove execute permission from many files that should not have it 2015-11-10 09:48:56 -05:00
llformat.h remove execute permission from many files that should not have it 2015-11-10 09:48:56 -05:00
llframetimer.cpp remove execute permission from many files that should not have it 2015-11-10 09:48:56 -05:00
llframetimer.h remove execute permission from many files that should not have it 2015-11-10 09:48:56 -05:00
llhandle.h DRTVWR-418: #include "llrefcount.h" : LLTombStone uses LLRefCount. 2017-03-13 14:22:19 -04:00
llhash.h remove execute permission from many files that should not have it 2015-11-10 09:48:56 -05:00
llheartbeat.cpp remove execute permission from many files that should not have it 2015-11-10 09:48:56 -05:00
llheartbeat.h remove execute permission from many files that should not have it 2015-11-10 09:48:56 -05:00
llheteromap.cpp MAINT-5232: Add LLHeteroMap to contain objects of unrelated classes. 2016-10-12 23:01:48 -04:00
llheteromap.h DRTVWR-418: Make operator()() method for comparator functor const. 2017-02-03 10:34:01 -05:00
llindexedvector.h remove execute permission from many files that should not have it 2015-11-10 09:48:56 -05:00
llinitdestroyclass.cpp MAINT-5232: Move "llerror.h" out of llcleanup.h, llinitdestroyclass.h 2016-08-30 16:28:21 -04:00
llinitdestroyclass.h MAINT-5232: Normalize LLSingleton subclasses. 2016-09-15 20:18:12 -04:00
llinitparam.cpp MAINT-7593 FIXED "Failed to parse parameter" spam 2017-07-13 11:01:20 +03:00
llinitparam.h DRTVWR-474: Do NOT autokill updater process on viewer termination. 2018-10-03 14:00:05 -04:00
llinstancetracker.cpp DRTVWR-494: Move LL_ERRS out of llinstancetracker.h header file. 2020-03-25 15:28:17 -04:00
llinstancetracker.h DRTVWR-476: Adapt LLInstanceTracker::snapshot for VS limitations. 2020-03-25 19:24:25 -04:00
llkeythrottle.h remove execute permission from many files that should not have it 2015-11-10 09:48:56 -05:00
llkeyusetracker.h remove execute permission from many files that should not have it 2015-11-10 09:48:56 -05:00
llleap.cpp DRTVWR-474: Do NOT autokill updater process on viewer termination. 2018-10-03 14:00:05 -04:00
llleap.h DRTVWR-474: Do NOT autokill updater process on viewer termination. 2018-10-03 14:00:05 -04:00
llleaplistener.cpp DRTVWR-476: Eliminate static LLEventPump factory maps. 2020-03-25 18:58:16 -04:00
llleaplistener.h DRTVWR-476: Eliminate static LLEventPump factory maps. 2020-03-25 18:58:16 -04:00
llliveappconfig.cpp remove execute permission from many files that should not have it 2015-11-10 09:48:56 -05:00
llliveappconfig.h remove execute permission from many files that should not have it 2015-11-10 09:48:56 -05:00
lllivefile.cpp Mods to make merge with viewer-release have less whitespace-only change and fix diffs between EEP and VR. 2019-03-13 13:21:48 -07:00
lllivefile.h remove execute permission from many files that should not have it 2015-11-10 09:48:56 -05:00
llmainthreadtask.cpp DRTVWR-494: Add LLMainThreadTask to perform work on the main thread. 2020-03-25 15:28:17 -04:00
llmainthreadtask.h DRTVWR-494: Remove LLMainThreadTask::dispatch(LockStatic&, ...) 2020-03-25 15:28:17 -04:00
llmake.h DRTVWR-476: Engage variadic llmake() implementation. 2020-03-25 18:52:10 -04:00
llmd5.cpp remove execute permission from many files that should not have it 2015-11-10 09:48:56 -05:00
llmd5.h remove execute permission from many files that should not have it 2015-11-10 09:48:56 -05:00
llmemory.cpp Use more typedefs to simplify sync between viewer and sim env settings code. 2018-06-02 23:28:48 +01:00
llmemory.h SL-944 - disabled a not-very-useful assert that greatly slows the RWD build 2018-07-31 14:02:42 +01:00
llmemorystream.cpp remove execute permission from many files that should not have it 2015-11-10 09:48:56 -05:00
llmemorystream.h remove execute permission from many files that should not have it 2015-11-10 09:48:56 -05:00
llmetricperformancetester.cpp MAINT-7758 Fixed freeze on loading lsl scripts from unicode named windows folder. 2017-08-30 19:57:02 +03:00
llmetricperformancetester.h MAINT-7758 Fixed freeze on loading lsl scripts from unicode named windows folder. 2017-08-30 19:57:02 +03:00
llmetrics.cpp remove execute permission from many files that should not have it 2015-11-10 09:48:56 -05:00
llmetrics.h remove execute permission from many files that should not have it 2015-11-10 09:48:56 -05:00
llmortician.cpp SL-10908 Output class names we are clearing on startup 2019-05-27 17:32:53 +03:00
llmortician.h SL-10908 Output class names we are clearing on startup 2019-05-27 17:32:53 +03:00
llmutex.cpp DRTVWR-494: Use std:🧵:id for LLThread::currentID(). 2020-03-25 15:28:17 -04:00
llmutex.h DRTVWR-494: Use std:🧵:id for LLThread::currentID(). 2020-03-25 15:28:17 -04:00
llnametable.h revived some deleted files to get mac build working 2014-04-08 18:00:54 -07:00
llpointer.h remove execute permission from many files that should not have it 2015-11-10 09:48:56 -05:00
llpounceable.h MAINT-5232: Normalize LLSingleton subclasses. 2016-09-15 20:18:12 -04:00
llpredicate.cpp SH-3405 WIP convert existing stats to lltrace system 2012-10-26 20:03:33 -07:00
llpredicate.h Update to build on Xcode 6.0: fix typo in functions params 2014-10-20 15:20:10 -07:00
llpreprocessor.h SL-793: Add LL_PRETTY_FUNCTION macro wrapping __PRETTY_FUNCTION__ 2020-03-25 18:39:20 -04:00
llpriqueuemap.h remove execute permission from many files that should not have it 2015-11-10 09:48:56 -05:00
llprocess.cpp DRTVWR-476: Fix confusing comment in LLProcess::handle_status(). 2020-03-25 18:44:04 -04:00
llprocess.h Pull in improvements to LLProcess termination via a commit from Nat Linden here: 4f39500cb4?at=default 2017-04-19 16:50:56 -07:00
llprocessor.cpp AMD CPUs list update 2020-04-21 00:35:19 +03:00
llprocessor.h remove execute permission from many files that should not have it 2015-11-10 09:48:56 -05:00
llprocinfo.cpp SH-4153 Port user and system cpu accounting from example program. 2013-05-01 23:19:34 +00:00
llprocinfo.h SH-4153 Port user and system cpu accounting from example program. 2013-05-01 23:19:34 +00:00
llptrto.cpp remove execute permission from many files that should not have it 2015-11-10 09:48:56 -05:00
llptrto.h remove execute permission from many files that should not have it 2015-11-10 09:48:56 -05:00
llqueuedthread.cpp remove execute permission from many files that should not have it 2015-11-10 09:48:56 -05:00
llqueuedthread.h SL-10291 Replace apr_atomic with standard C++11 functionality 2019-01-15 18:31:17 +02:00
llrand.cpp remove execute permission from many files that should not have it 2015-11-10 09:48:56 -05:00
llrand.h remove execute permission from many files that should not have it 2015-11-10 09:48:56 -05:00
llrefcount.cpp SL-10291 cleanup-mutex 2019-01-17 01:53:27 +02:00
llrefcount.h DRTVWR-494: Use std:🧵:id for LLThread::currentID(). 2020-03-25 15:28:17 -04:00
llregistry.h MAINT-5232: Normalize LLSingleton subclasses. 2016-09-15 20:18:12 -04:00
llrun.cpp remove execute permission from many files that should not have it 2015-11-10 09:48:56 -05:00
llrun.h remove execute permission from many files that should not have it 2015-11-10 09:48:56 -05:00
llsafehandle.h DRTVWR-418: Add dtor to LLSafeHandle<T>::NullInstanceHolder 2017-05-03 22:53:34 -04:00
llsd.cpp Split for viewer/simhost sync LLSD with simhost. 2017-11-30 11:32:22 -08:00
llsd.h Split for viewer/simhost sync LLSD with simhost. 2017-11-30 11:32:22 -08:00
llsdjson.cpp MAINT-5575: Finished converting experience cache to singleton 2015-09-10 16:48:01 -07:00
llsdjson.h MAINT-5575: Finished converting experience cache to singleton 2015-09-10 16:48:01 -07:00
llsdparam.cpp remove execute permission from many files that should not have it 2015-11-10 09:48:56 -05:00
llsdparam.h MAINT-6783 Xml parser warnings should show the file name 2016-09-30 11:21:22 +03:00
llsdserialize.cpp DRTVWR-476: Make LLSDFormatter::OPTIONS_PRETTY_BINARY uppercase 2020-05-14 08:54:15 -04:00
llsdserialize.h DRTVWR-476: Default LLSDNotationFormatter now OPTIONS_PRETTY_BINARY. 2020-05-13 16:37:12 -04:00
llsdserialize_xml.cpp DRTVWR-476: Default LLSDNotationFormatter now OPTIONS_PRETTY_BINARY. 2020-05-13 16:37:12 -04:00
llsdserialize_xml.h remove execute permission from many files that should not have it 2015-11-10 09:48:56 -05:00
llsdutil.cpp DRTVWR-476: Merge branch 'master' of lindenlab/viewer into DRTVWR-476-boost-1.72 2020-05-06 16:06:26 -04:00
llsdutil.h DRTVWR-476: Add llsd::clone(), llsd::shallow() aliases 2020-05-06 16:16:06 -04:00
llsimplehash.h remove execute permission from many files that should not have it 2015-11-10 09:48:56 -05:00
llsingleton.cpp DRTVWR-476: Log calls to LLParamSingleton::initParamSingleton(). 2020-03-25 19:25:42 -04:00
llsingleton.h DRTVWR-476: Merge branch 'master' of lindenlab/viewer into DRTVWR-476-boost-1.72 2020-05-06 16:06:26 -04:00
llsmoothstep.h remove execute permission from many files that should not have it 2015-11-10 09:48:56 -05:00
llstacktrace.cpp DRTVWR-476: Fix Windows line endings 2020-03-25 18:47:13 -04:00
llstacktrace.h remove execute permission from many files that should not have it 2015-11-10 09:48:56 -05:00
llstatenums.h more cleanup 2013-07-30 19:14:19 -07:00
llstaticstringtable.h Fix missing eol at eof in llstaticstringtable.h breaking linux build 2013-03-11 10:12:10 -07:00
llstatsaccumulator.h MAINT-7634: Move StatsAccumulator into llcommon, collect data sent and error codes from core. 2017-07-28 14:07:25 -07:00
llstl.h merged jelly-doll viewer-release into bento 2016-05-21 08:15:28 -04:00
llstreamqueue.cpp remove execute permission from many files that should not have it 2015-11-10 09:48:56 -05:00
llstreamqueue.h remove execute permission from many files that should not have it 2015-11-10 09:48:56 -05:00
llstreamtools.cpp remove execute permission from many files that should not have it 2015-11-10 09:48:56 -05:00
llstreamtools.h remove execute permission from many files that should not have it 2015-11-10 09:48:56 -05:00
llstrider.h remove execute permission from many files that should not have it 2015-11-10 09:48:56 -05:00
llstring.cpp DRTVWR-476: Eliminate snprintf_hack::snprintf(). Use MS snprintf(). 2020-03-25 16:12:45 -04:00
llstring.h DRTVWR-476: Eliminate snprintf_hack::snprintf(). Use MS snprintf(). 2020-03-25 16:12:45 -04:00
llstringtable.cpp remove execute permission from many files that should not have it 2015-11-10 09:48:56 -05:00
llstringtable.h remove execute permission from many files that should not have it 2015-11-10 09:48:56 -05:00
llsys.cpp SL-9935 Include full win10 build number in Help > About Second Life and logs 2018-11-12 15:31:19 +02:00
llsys.h Automated merge with ssh://bitbucket.org/lindenlab/viewer-release 2017-10-11 14:35:49 -04:00
lltempredirect.cpp DRTVWR-476: Always clear both fields even if mOrigTarget invalid. 2020-03-25 19:06:13 -04:00
lltempredirect.h DRTVWR-476: Encapsulate dup()/dup2() fd saving as LLTempRedirect. 2020-03-25 19:06:12 -04:00
llthread.cpp DRTVWR-494: Use std:🧵:id for LLThread::currentID(). 2020-03-25 15:28:17 -04:00
llthread.h DRTVWR-494: Use std:🧵:id for LLThread::currentID(). 2020-03-25 15:28:17 -04:00
llthreadlocalstorage.cpp DRTVWR-494: Defend LLInstanceTracker against multi-thread usage. 2020-03-25 15:28:17 -04:00
llthreadlocalstorage.h OPEN-282 - Define LL_THREAD_LOCAL for our platforms in order to unify TLS support 2014-11-19 22:27:36 -07:00
llthreadsafequeue.cpp SL-10291 Replace apr thread with standard C++11 functionality 2019-01-15 22:27:28 +02:00
llthreadsafequeue.h DRTVWR-476: Add LLThreadSafeQueue::tryPushFrontFor(). 2020-05-20 10:32:30 -04:00
lltimer.cpp remove execute permission from many files that should not have it 2015-11-10 09:48:56 -05:00
lltimer.h remove execute permission from many files that should not have it 2015-11-10 09:48:56 -05:00
lltrace.cpp SH-4653 FIX Interesting: Viewer crashes while reading chat history 2013-12-10 12:50:23 -08:00
lltrace.h DRTVWR-494: Defend LLInstanceTracker against multi-thread usage. 2020-03-25 15:28:17 -04:00
lltraceaccumulators.cpp DRTVWR-476: Explicitly cast 64-bit NaN constant to F32 as needed. 2020-03-25 16:12:46 -04:00
lltraceaccumulators.h DRTVWR-476: Explicitly cast 64-bit NaN constant to F32 as needed. 2020-03-25 16:12:46 -04:00
lltracerecording.cpp MAINT-6366 - diagnostics related to animation asset downloads 2016-06-13 09:15:42 -04:00
lltracerecording.h fix for fast timer view having runaway time slot 2013-11-15 22:06:41 -08:00
lltracethreadrecorder.cpp DRTVWR-494: Defend LLInstanceTracker against multi-thread usage. 2020-03-25 15:28:17 -04:00
lltracethreadrecorder.h SH-4653 FIX Interesting: Viewer crashes while reading chat history 2013-12-10 15:48:57 -08:00
lltreeiterators.h remove execute permission from many files that should not have it 2015-11-10 09:48:56 -05:00
llunits.h forgot a file 2013-08-27 14:44:49 -07:00
llunittype.h Use more typedefs to simplify sync between viewer and sim env settings code. 2018-06-02 23:28:48 +01:00
lluri.cpp SL-10924 Missed symbol 2019-04-13 14:42:38 +03:00
lluri.h SL-10924 Fix data escaping to accomodate CEF update 2019-04-11 20:29:50 +03:00
lluriparser.cpp MAINT-6608 FIXED URI parser problem with links with username, password 2016-08-10 13:31:25 +03:00
lluriparser.h MAINT-6608 FIXED URI parser problem with links with username, password 2016-08-10 13:31:25 +03:00
lluuid.cpp DRTVWR-494: Use std:🧵:id for LLThread::currentID(). 2020-03-25 15:28:17 -04:00
lluuid.h Added boost::hash<> spec for LLSD 2017-11-27 10:19:43 -08:00
llwin32headers.h merge with release 2014-04-07 19:09:40 -07:00
llwin32headerslean.h merge with release 2014-04-07 19:09:40 -07:00
llworkerthread.cpp SL-10291 Replace apr_mutex with standard C++11 functionality 2019-01-14 22:04:44 +02:00
llworkerthread.h DRTVWR-494: Use std:🧵:id for LLThread::currentID(). 2020-03-25 15:28:17 -04:00
lockstatic.h DRTVWR-494: Move explanatory comments from LLSingleton to LockStatic. 2020-03-25 15:28:17 -04:00
mutex.h DRTVWR-494: Encapsulate redundant VS boilerplate around <mutex>. 2020-03-25 15:28:17 -04:00
stdtypes.h SL-10153: Introduce ll_convert, windows_message() templates. 2018-12-14 10:48:43 -05:00
string_table.h revived some deleted files to get mac build working 2014-04-08 18:00:54 -07:00
stringize.h SL-821: Add WSTRINGIZE() and DEWSTRINGIZE() macros for wide strings. 2018-05-17 05:45:36 -04:00
timer.h remove execute permission from many files that should not have it 2015-11-10 09:48:56 -05:00
timing.cpp remove execute permission from many files that should not have it 2015-11-10 09:48:56 -05:00
u64.cpp remove execute permission from many files that should not have it 2015-11-10 09:48:56 -05:00
u64.h remove execute permission from many files that should not have it 2015-11-10 09:48:56 -05:00