Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/wolfpld/tracy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/NEWS
diff options
context:
space:
mode:
authorBartosz Taudul <wolf@nereid.pl>2021-11-14 01:08:03 +0300
committerBartosz Taudul <wolf@nereid.pl>2021-11-14 01:08:03 +0300
commit0666dc0813bb469d29315fe4e7c33860348bf73d (patch)
tree51476e87ea4e41b1c234de0d973c0f54c0065bc1 /NEWS
parent014f084393fe27a35d93d29b90d280c9e3b2d908 (diff)
Update NEWS.
Diffstat (limited to 'NEWS')
-rw-r--r--NEWS21
1 files changed, 21 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index 26f9828d..63aaa504 100644
--- a/NEWS
+++ b/NEWS
@@ -28,6 +28,8 @@ v0.x.x (xxxx-xx-xx)
originating function.
- If symbol view is restricted to a single inline function, all assembly
instructions not in this context will be dimmed out.
+ - Likewise, the navigation in assembly code will be limited just to the
+ inline context, if a single function is selected.
- Kernel call stacks will be now properly captured and displayed in the
profiler. Kernel functions are marked with the red color.
- The CPU hardware performance counters can be now sampled on Linux.
@@ -60,6 +62,25 @@ v0.x.x (xxxx-xx-xx)
stuck when there is a large number of symbols to resolve. This not only
improves user experience, but also prevents buildup of data (and memory
consumption) on the client side.
+- Android device name will be now reported.
+- Added support for capturing fibers.
+ - Fibers require additional processing, which has to be enabled by adding
+ the TRACY_FIBERS define on the client side.
+ - Client code requires additional instrumentation using the new macros
+ TracyFiberEnter and TracyFiberLeave.
+ - Fibers are represented in traces as separate threads, and are
+ distinguished by green color. Faux context switch regions are used to
+ indicate when a fiber is being run by the worker thread.
+- Continuous frame marks no longer need to be issued from a single thread.
+- Context switch call stacks are now captured on Windows.
+ - Hovering the context switch wait region will now display wait stack,
+ which may provide additional insight into why the switch happened.
+ - Wait stacks inspection can be performed in a new view.
+ - Stacks can be limited to certain threads and to a selected time range.
+ - Stacks are presented either as a sorted list, or as a bottom-up and
+ top-down trees.
+- Updated project build files to MSVC 2022.
+- Call stack tooltips now also show the executable image name.
v0.7.8 (2021-05-19)