summaryrefslogtreecommitdiffstats
path: root/externals/microprofile/microprofile.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* externals/microprofile: Fix data race in g_bUseLockReinUsesLisp2020-08-261-1/+1
| | | | | As reported by tsan, g_bUseLock had a data race. Fix this using an atomic boolean.
* microprofile: Don't memset through std::atomic typesLioncash2020-08-241-19/+38
| | | | | | | | | | | | | Two of the members of the MicroProfileThreadLog contains two std::atomic instances. Given these aren't trivially-copyable types, we shouldn't be memsetting the structure, given implementation details can contain other members within it. To avoid potential undefined behavior on platforms, we can use aggregate initialization to zero out the members while still having well-defined behavior. While we're at it we can also silence some sign conversion warnings.
* General: Resolve warnings related to missing declarationsLioncash2020-04-171-10/+10
|
* microprofile: Silence sign comparison warningReinUsesLisp2020-03-191-3/+3
|
* Microprofile: Allow accessing token.Fernando Sahmkow2020-03-121-0/+1
|
* microprofile: Silence conversion warningsReinUsesLisp2019-11-081-3/+3
|
* Fix Microprofile in MinGW (#2530)Fernando Sahmkow2017-02-051-1/+1
|
* Add mingw compile supportJames Rowe2016-11-141-2/+2
|
* microprofile: unbreak on POSIX systemsJan Beich2016-10-281-4/+4
| | | | | | | | | | | | | | | | In file included from src/common/microprofile.cpp:7: In file included from src/./common/microprofile.h:23: externals/microprofile/microprofile.h:830:5: error: use of undeclared identifier 'MP_BREAK' MP_ASSERT(t == nBegin); ^ externals/microprofile/microprofile.h:238:34: note: expanded from macro 'MP_ASSERT' ^ externals/microprofile/microprofile.h:831:5: error: use of undeclared identifier 'MP_BREAK' MP_ASSERT(nTimerIndex == (nToken&0x3fff)); ^ externals/microprofile/microprofile.h:238:34: note: expanded from macro 'MP_ASSERT' ^ [...]
* Integrate the MicroProfile profiling libraryYuri Kunde Schlesner2015-08-251-0/+3571
This brings goodies such as a configurable user interface and multi-threaded timeline view.