mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-22 22:44:34 +00:00
Add simple fiber example.
This commit is contained in:
parent
b3562c99fb
commit
bcdbd2f7d7
30
examples/fibers.cpp
Normal file
30
examples/fibers.cpp
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
// g++ fibers.cpp ../TracyClient.cpp -DTRACY_ENABLE -DTRACY_FIBERS -lpthread -ldl
|
||||||
|
|
||||||
|
#include <thread>
|
||||||
|
#include <unistd.h>
|
||||||
|
|
||||||
|
#include "../Tracy.hpp"
|
||||||
|
#include "../TracyC.h"
|
||||||
|
|
||||||
|
const char* fiber = "job1";
|
||||||
|
TracyCZoneCtx zone;
|
||||||
|
|
||||||
|
int main()
|
||||||
|
{
|
||||||
|
std::thread t1( [] {
|
||||||
|
TracyFiberEnter( fiber );
|
||||||
|
TracyCZone( ctx, 1 );
|
||||||
|
zone = ctx;
|
||||||
|
sleep( 1 );
|
||||||
|
TracyFiberLeave;
|
||||||
|
});
|
||||||
|
t1.join();
|
||||||
|
|
||||||
|
std::thread t2( [] {
|
||||||
|
TracyFiberEnter( fiber );
|
||||||
|
sleep( 1 );
|
||||||
|
TracyCZoneEnd( zone );
|
||||||
|
TracyFiberLeave;
|
||||||
|
});
|
||||||
|
t2.join();
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user