mirror of
https://github.com/xzeldon/htop.git
synced 2025-07-12 12:14:36 +03:00
IO-wait time now counts as idle time, which is a more
accurate description. It is still available in split time, now called detailed CPU time. (thanks to Samuel Thibault for the report)
This commit is contained in:
@ -27,11 +27,11 @@ typedef struct RichString_ {
|
||||
#define MIN(a,b) ((a)<(b)?(a):(b))
|
||||
#endif
|
||||
|
||||
void RichString_write(RichString* this, int attrs, char* data);
|
||||
extern void RichString_appendn(RichString* this, int attrs, char* data, int len);
|
||||
|
||||
extern void RichString_append(RichString* this, int attrs, char* data);
|
||||
|
||||
extern void RichString_appendn(RichString* this, int attrs, char* data, int len);
|
||||
void RichString_write(RichString* this, int attrs, char* data);
|
||||
|
||||
void RichString_setAttr(RichString *this, int attrs);
|
||||
|
||||
|
Reference in New Issue
Block a user