X-Git-Url: http://git.liburcu.org/?a=blobdiff_plain;f=src%2Flttngtoptypes.h;h=15b861446cfd44e1cf22ba6015911ea1257984c9;hb=54761a45d53fe4b891dd60f17cbec0d3f85ab28d;hp=43b3381b1777110c771099741f8908d3d6e43b9f;hpb=246d59926e23f5cdf6f017ae7544f2582b666ef7;p=lttngtop.git diff --git a/src/lttngtoptypes.h b/src/lttngtoptypes.h index 43b3381..15b8614 100644 --- a/src/lttngtoptypes.h +++ b/src/lttngtoptypes.h @@ -43,7 +43,7 @@ struct processtop { unsigned int puuid; int pid; char *comm; - char *hostname; + struct host *host; int tid; int ppid; int vpid; @@ -79,6 +79,7 @@ struct cputime { struct processtop *current_task; unsigned long task_start; GHashTable *perf; + struct syscall *current_syscall; }; /* @@ -152,6 +153,11 @@ struct vmas { unsigned long page_faults; }; +struct syscall { + char *name; + unsigned long ts_start; +}; + struct syscalls { unsigned int id; unsigned long count; @@ -190,4 +196,9 @@ struct kprobes { int count; }; +struct host { + char *hostname; + int filter; +}; + #endif /* LTTNGTOPTYPES_H */