mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-22 14:44:34 +00:00
Add thread that only allocates memory.
This commit is contained in:
parent
00da3ba6eb
commit
0b568d55ba
@ -220,6 +220,11 @@ void CallstackTime()
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void OnlyMemory()
|
||||||
|
{
|
||||||
|
new int;
|
||||||
|
}
|
||||||
|
|
||||||
int main()
|
int main()
|
||||||
{
|
{
|
||||||
auto t1 = std::thread( TestFunction );
|
auto t1 = std::thread( TestFunction );
|
||||||
@ -241,6 +246,7 @@ int main()
|
|||||||
auto t17 = std::thread( SharedWrite1 );
|
auto t17 = std::thread( SharedWrite1 );
|
||||||
auto t18 = std::thread( SharedWrite2 );
|
auto t18 = std::thread( SharedWrite2 );
|
||||||
auto t19 = std::thread( CallstackTime );
|
auto t19 = std::thread( CallstackTime );
|
||||||
|
auto t20 = std::thread( OnlyMemory );
|
||||||
|
|
||||||
tracy::SetThreadName( t1, "First thread" );
|
tracy::SetThreadName( t1, "First thread" );
|
||||||
tracy::SetThreadName( t2, "Second thread" );
|
tracy::SetThreadName( t2, "Second thread" );
|
||||||
@ -261,6 +267,7 @@ int main()
|
|||||||
tracy::SetThreadName( t17, "Shared write 1" );
|
tracy::SetThreadName( t17, "Shared write 1" );
|
||||||
tracy::SetThreadName( t18, "Shared write 2" );
|
tracy::SetThreadName( t18, "Shared write 2" );
|
||||||
tracy::SetThreadName( t19, "Callstack time" );
|
tracy::SetThreadName( t19, "Callstack time" );
|
||||||
|
tracy::SetThreadName( t20, "Only memory" );
|
||||||
|
|
||||||
for(;;)
|
for(;;)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user