2 * Copyright (C) 2011-2012 Julien Desfossez
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License Version 2 as
6 * published by the Free Software Foundation;
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 #ifndef LTTNGTOPTYPES_H
19 #define LTTNGTOPTYPES_H
24 GHashTable
*process_hash_table
; /* struct processtop */
25 GPtrArray
*process_table
; /* struct processtop */
26 GPtrArray
*files_table
; /* struct files */
27 GPtrArray
*cpu_table
; /* struct cputime */
31 unsigned int nbnewproc
;
32 unsigned int nbdeadproc
;
33 unsigned int nbthreads
;
34 unsigned int nbnewthreads
;
35 unsigned int nbdeadthreads
;
37 unsigned int nbnewfiles
;
38 unsigned int nbclosedfiles
;
54 GPtrArray
*process_files_table
;
55 struct file_history
*files_history
;
58 struct processtop
*threadparent
;
60 unsigned long totalfileread
;
61 unsigned long totalfilewrite
;
62 unsigned long fileread
;
63 unsigned long filewrite
;
64 struct syscalls
*syscall_info
;
65 unsigned long totalcpunsec
;
66 unsigned long threadstotalcpunsec
;
78 struct processtop
*current_task
;
79 unsigned long task_start
;
84 * used for "relative seeks" (with fd, for example fs.lseek)
85 * and for "absolute seeks" (events occuring on a device without
86 * any link to a particular process)
99 struct processtop
*ref
;
107 unsigned long openedat
;
108 unsigned long closedat
;
109 unsigned long lastaccess
;
112 unsigned long nbpoll
;
113 unsigned long nbselect
;
114 unsigned long nbopen
;
115 unsigned long nbclose
;
116 //struct *seeks; /* relative seeks inside the file */
118 /* XXX : average wait time */
121 struct file_history
{
123 struct file_history
*next
;
128 int parent_fd
; /* on accept a new fd is created from the bound socket */
133 unsigned long openedat
;
134 unsigned long closedat
;
135 unsigned long bind_address
;
136 unsigned long remote_address
;
137 //struct *sock_options;
140 struct sock_options
{
150 char *description
; /* filename or description if possible (stack, heap) */
151 unsigned long page_faults
;
170 struct file_info
*next
;
176 /* header for cputop display */
184 #endif /* LTTNGTOPTYPES_H */
This page took 0.032329 seconds and 4 git commands to generate.