mirror of
https://github.com/thunderbrewhq/binana.git
synced 2025-12-12 17:52:29 +00:00
feat(profile): more symbols
This commit is contained in:
parent
ea452811d6
commit
0d8380a6a5
19 changed files with 355 additions and 101 deletions
25
profile/3.3.5a-windows-386/include/event/thread.h
Normal file
25
profile/3.3.5a-windows-386/include/event/thread.h
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
#ifndef EVENT_THREAD_H
|
||||
#define EVENT_THREAD_H
|
||||
|
||||
DECLARE_STRUCT(EvtThread);
|
||||
|
||||
#include "storm/thread.h"
|
||||
#include "storm/list.h"
|
||||
#include "storm/queue.h"
|
||||
|
||||
STORM_TS_LIST(EvtThread);
|
||||
|
||||
// class EvtThread : public TSLinkedNode<EvtThread>
|
||||
struct EvtThread {
|
||||
TSLinkedNode_EvtThread b_base;
|
||||
uint32_t m_threadSlot;
|
||||
uint32_t m_threadCount;
|
||||
uint32_t m_weightTotal;
|
||||
uint32_t m_weightAvg;
|
||||
uint32_t m_contextCount;
|
||||
uint32_t m_rebalance;
|
||||
SEvent m_wakeEvent;
|
||||
EvtContextQueue m_contextQueue;
|
||||
};
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue