API Documentation
Loading...
Searching...
No Matches
LockAnalyzerThread.h
Go to the documentation of this file.
1#pragma once
2#include <NDEVR/Buffer.h>
3#include <NDEVR/Thread.h>
4#include <NDEVR/Time.h>
5namespace NDEVR
6{
7 class LockAnalyzerThread : public Thread
8 {
9 static LockAnalyzerThread& DefaultAnalyzer();
10 struct ThreadInfo
11 {
12 uint04 thread_id;
13 Time last_checkin_time;
14 };
15 protected:
17 };
18}
The equivelent of std::vector but with a bit more control. The basic array unit of the library.
Definition Buffer.hpp:64
Definition LockAnalyzerThread.h:8
Buffer< Thread * > m_registered_threads
Definition LockAnalyzerThread.h:16
Represents a timestamp with utilities for manipulation and conversion.
Definition Time.h:54
Definition ACIColor.h:37
uint32_t uint04
-Defines an alias representing a 4 byte, unsigned integer -Can represent exact integer values 0 throu...
Definition BaseValues.hpp:120