VR-Vantage 3.0.3 API Documentation
Home
Modules
Namespaces
Classes
Files
Libraries
Examples
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Groups
Pages
include
TracyClient
common
TracySystem.hpp
Go to the documentation of this file.
1
#ifndef __TRACYSYSTEM_HPP__
2
#define __TRACYSYSTEM_HPP__
3
4
#include <
stdint.h
>
5
6
#include "
TracyApi.h
"
7
8
namespace
tracy
9
{
10
11
namespace
detail
12
{
13
TRACY_API
uint64_t
GetThreadHandleImpl
();
14
}
15
16
#ifdef TRACY_ENABLE
17
TRACY_API
uint64_t
GetThreadHandle
();
18
#else
19
static
inline
uint64_t
GetThreadHandle
()
20
{
21
return
detail::GetThreadHandleImpl
();
22
}
23
#endif
24
25
TRACY_API
void
SetThreadName
(
const
char
*
name
);
26
TRACY_API
const
char
*
GetThreadName
(
uint64_t
id
);
27
28
}
29
30
#endif
Copyright © 2005-2023 MAK Technologies. All Rights Reserved (
www.mak.com
)