Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-01-12 | Experimentally try full-size LLLeap stream test on Windows. | Nat Goodspeed | |
The new toolchain may (!) have fixed a longstanding bug in LLLeap / APR when we try to pump large volumes of data through a Windows named pipe using APR nonblocking I/O. This used to fail pretty consistently because the APR nonblocking write call would sometimes spuriously return "would block" when in fact the data buffer was completely written; the caller would later retry, which of course would duplicate some of the data in the pipe. Preliminary experiments with VS 2013 suggest this may have been resolved. This changeset is to propagate the experiment to a wider range of Windows systems; we may need to revert it if in fact the bug persists. | |||
2014-12-23 | fix dos line endings | Oz Linden | |
2014-12-22 | Investigative check-in to see if system clock() function can be used to time ↵ | callum_linden | |
ms_sleep() calls and adjust expectations accordingly | |||
2014-12-16 | For one use case, boost::bind() better than boost::phoenix::bind(). | Nat Goodspeed | |
We use boost::phoenix::placeholders::arg1 to imply a whole lambda expression, replacing boost::lambda. But to bind a plain function in a more straightforward way, seems classic boost::bind() works while boost::phoenix::bind() does not. | |||
2014-12-16 | Isolate #pragma clang to __clang__ compilations. | Nat Goodspeed | |
It's very irritating that Visual Studio produces a warning for unrecognized #pragmas, which we then merrily turn into an error -- #pragma is inherently compiler-specific! | |||
2014-12-12 | Eliminate use of boost::lambda with boost::function (Trac #10864). | Nat Goodspeed | |
https://svn.boost.org/trac/boost/ticket/10864 I've used boost::lambda with boost::function in a number of creative ways over the years. But the clang 6 shipped with Xcode 6 seems to have somehow broken lambda + function in Boost 1.57. boost::phoenix is a partial workaround. Sadly, lambda's comma-operator overload doesn't seem to be supported, necessitating a couple ugly workarounds. With real lambdas now supported by current compilers, I'm sure the Boost community has little incentive to repair the lambda + function problem. Presumably we'll be able to use such features ourselves Real Soon Now... | |||
2014-12-11 | Disambiguate a few ensure() calls. | Nat Goodspeed | |
These were of the form ensure(std::string, something convertible to bool). Not sure what the ambiguity was, but ensure(std::string, bool(something)) works better. | |||
2014-11-14 | remove skip from llframetimer_test now that it is fixed | Oz Linden | |
2014-11-14 | merge up to tip of viewer-tools-update | Oz Linden | |
2014-11-14 | rewrite an llframetimer test to be less sensitive to extended ms_sleep calls | Oz Linden | |
2014-11-14 | Skip LLFrameTimer test<3>, which fails with Xcode 6.x builds. | Nat Goodspeed | |
Hopefully this is temporary until we figure out the real problem! | |||
2014-10-23 | Bring in new TUT library build. Clean up ensure_equals() overloads. | Nat Goodspeed | |
The new TUT library build eliminates the ambiguity about ensure_equals(const char*, ...) versus ensure_equals(const std::string&, ...). Now it's all based on const std::string&. Remove pointless const char* overloads and ambiguous forwarding templates. With clang in Xcode 6, any new datatypes we intend to use with ensure_equals() must have operator<<(std::ostream&, datatype) declared BEFORE lltut.h #includes tut.hpp. Reorder code in certain test source files to guarantee that visibility. | |||
2014-10-22 | Remove unit test case that relied on undefined order of evaluation | Oz Linden | |
in: 'cout << a() << b()' the order of evaluation of a() and b() is undefined. | |||
2014-10-22 | merge with more fixes from callum | Oz Linden | |
2014-10-22 | correct merge error in llerror_test.cpp | Oz Linden | |
2014-10-22 | Update to build on Xcode 6.0 (fix unit tests): remove unused statement warning | callum_linden | |
2014-10-22 | Update to build on Xcode 6.0 (fix unit tests): skip llerror_test test for ↵ | callum_linden | |
now - operator << issues on clang | |||
2014-10-22 | Update to build on Xcode 6.0 (fix unit tests): remove unused functions that ↵ | callum_linden | |
trigger clang warnings | |||
2014-10-22 | added skip to llerror_test of nested logging, noted in todo file | Oz Linden | |
2014-06-02 | Pull and merge from ssh://hg@bitbucket.org/lindenlab/viewer-drtvwr-365. | Stinson Linden | |
2014-05-17 | MAINT-4009: Final pass refactoring to eliminate memory allocation related to ↵ | Stinson Linden | |
error reporting that is not properly cleaned up. | |||
2014-05-16 | MAINT-4009: First pass refactoring to eliminate memory related to error ↵ | Stinson Linden | |
reporting that is not properly cleaned up. | |||
2014-05-14 | v-r -> s-e merge WIP | Brad Payne (Vir Linden) | |
2014-04-07 | merge with release | Richard Linden | |
2014-02-24 | merge with release | Richard Linden | |
2014-02-24 | Pulled from release. | obscurestar | |
2014-01-14 | Some cleanup of string to wstring conversion and vice versa. | Aura Linden | |
2013-10-21 | fixed things so that trace recordings can be read from even while active | Richard Linden | |
2013-10-21 | more buildfix | Richard Linden | |
2013-10-21 | more buildfix stuff | Richard Linden | |
2013-10-21 | another attempted buildfix | Richard Linden | |
2013-10-21 | BUILDFIX: double delete in instancetracker unit test | Richard Linden | |
2013-10-18 | fixed llinstancetracker unit test | Richard Linden | |
2013-09-09 | merge with viewer-release | Richard Linden | |
2013-08-27 | fixed bad logic in unit test | Richard Linden | |
2013-08-27 | got comparisons between implicit and explicit units working right | Richard Linden | |
2013-08-27 | got linear unit conversions (like fahrenheit <-> celsius) working correctly | Richard Linden | |
further optimizations for codegen | |||
2013-08-27 | broke out llunit.h into llunittype.h and llunits.h for unit declarations | Richard Linden | |
changed unit declarations macros to make a lot more sense | |||
2013-08-26 | BUILDFIX: corrected template parameter for LL_BAD_TEMPLATE_INSTANTIATION ↵ | Richard Linden | |
macro in llunit | |||
2013-08-26 | Automated merge with http://bitbucket.org/lindenlab/viewer-interesting | Richard Linden | |
2013-08-26 | removed some unecessary template parameters from LLUnit member functions | Richard Linden | |
forced unit conversion code to inline unit conversion now no longer converts all the way to base and back, but tries to find equivalent units as early as possible fixed another llinfos instance scene monitor now outputs n/a for invalid samples | |||
2013-08-26 | Merge. Pull in viewer-release after SSA merge. | Monty Brandenberg | |
2013-08-23 | Automated merge with https://bitbucket.org/lindenlab/viewer-interesting | Richard Linden | |
2013-08-23 | BUILDFIX: replaced function that was accidentally removed | Richard Linden | |
2013-08-23 | BUILDFIX: fix for crashes in unit tests on mac and linux | Richard Linden | |
2013-08-23 | Automated merge with https://bitbucket.org/lindenlab/viewer-interesting | Richard Linden | |
2013-08-22 | SH-4433 FIX: Interesting: Statistics > Ping Sim is always 0 ms | Richard Linden | |
removed bad assert fixed precision issues during int->unsigned int conversions and vice versa | |||
2013-08-21 | SH-4433 WIP Interesting: Statistics > Ping Sim is always 0 ms | Richard Linden | |
added unit tests for lltrace | |||
2013-08-21 | SH-4433 WIP Interesting: Statistics > Ping Sim is always 0 ms | Richard Linden | |
made getPrimaryAccumulator return a reference since it was an always non-null pointer changed unit conversion to perform lazy division in order to avoid truncation of timer values | |||
2013-08-18 | SH-4433 WIP: Interesting: Statistics > Ping Sim is always 0 ms | Richard Linden | |
continued conversion to units system made units perform type promotion correctly and preserve type in arithmetic e.g. can now do LLVector3 in units added typedefs for remaining common unit types, including implicits |