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
|
|
@ -21,11 +21,15 @@ struct CSBasePriority {
|
|||
#define STORM_TS_TIMER_PRIORITY(T) \
|
||||
typedef struct TSTimerPriority_##T TSTimerPriority_##T; \
|
||||
struct TSTimerPriority_##T { \
|
||||
void** v_table; \
|
||||
CSBasePriority b_base; \
|
||||
T m_val; \
|
||||
}
|
||||
|
||||
#define STORM_TS_PRIORITY_QUEUE(T) \
|
||||
typedef CSBasePriorityQueue TSPriorityQueue_##T
|
||||
typedef struct TSPriorityQueue_##T TSPriorityQueue_##T; \
|
||||
struct TSPriorityQueue_##T { \
|
||||
CSBasePriority b_base; \
|
||||
}
|
||||
|
||||
#endif
|
||||
|
|
@ -11,7 +11,7 @@ DECLARE_STRUCT(SThread);
|
|||
typedef struct CSRWLock CSRWLock;
|
||||
|
||||
struct SCritSect {
|
||||
uint8_t m_critsect[24];
|
||||
uint8_t m_critsect[40];
|
||||
};
|
||||
|
||||
struct CSRWLock {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue