removed idle time calculation (doesn't work so far).
This commit is contained in:
@@ -23,9 +23,8 @@
|
||||
#define AQH_MSG_OFFS_SYSSTATS_UID 4 /* 4 bytes */
|
||||
#define AQH_MSG_OFFS_SYSSTATS_COMIRQS 8 /* 2 bytes */
|
||||
#define AQH_MSG_OFFS_SYSSTATS_TIMERIRQS 10 /* 2 bytes */
|
||||
#define AQH_MSG_OFFS_SYSSTATS_IDLEPERCENT 12 /* 1 byte */
|
||||
|
||||
#define AQH_MSG_MEMSTATS_MINSIZE (AQH_MSG_OFFS_ALL_DATA_BEGIN+AQH_MSG_OFFS_SYSSTATS_IDLEPERCENT+1)
|
||||
#define AQH_MSG_MEMSTATS_MINSIZE (AQH_MSG_OFFS_ALL_DATA_BEGIN+AQH_MSG_OFFS_SYSSTATS_TIMERIRQS+2)
|
||||
|
||||
|
||||
|
||||
@@ -56,23 +55,15 @@ uint16_t AQH_SysStatsMsg_GetTimerInterrupts(const GWEN_MSG *msg)
|
||||
|
||||
|
||||
|
||||
uint8_t AQH_SysStatsMsg_GetIdlePercentage(const GWEN_MSG *msg)
|
||||
{
|
||||
return AQH_NodeMsg_GetUint8At(msg, AQH_MSG_OFFS_ALL_DATA_BEGIN+AQH_MSG_OFFS_SYSSTATS_IDLEPERCENT, 0);
|
||||
}
|
||||
|
||||
|
||||
|
||||
void AQH_SysStatsMsg_DumpToBuffer(const GWEN_MSG *msg, GWEN_BUFFER *dbuf, const char *sText)
|
||||
{
|
||||
GWEN_Buffer_AppendArgs(dbuf,
|
||||
"0x%02x->0x%02x: SYSSTATS %s (uid=0x%08x, uptime=%d, idle=%d, com irqs=%d, timer irqs=%d)\n",
|
||||
"0x%02x->0x%02x: SYSSTATS %s (uid=0x%08x, uptime=%d, com irqs=%d, timer irqs=%d)\n",
|
||||
AQH_NodeMsg_GetSourceAddress(msg),
|
||||
AQH_NodeMsg_GetDestAddress(msg),
|
||||
sText,
|
||||
(unsigned int) AQH_SysStatsMsg_GetUid(msg),
|
||||
AQH_SysStatsMsg_GetSeconds(msg),
|
||||
AQH_SysStatsMsg_GetIdlePercentage(msg),
|
||||
AQH_SysStatsMsg_GetComInterrupts(msg),
|
||||
AQH_SysStatsMsg_GetTimerInterrupts(msg));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user