Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(783)

Side by Side Diff: reduce.h

Issue 6893111: Enhancements to ktop (Closed) Base URL: ssh://gitrw.chromium.org:9222/ktop.git@master
Patch Set: Created 9 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « plot.c ('k') | reduce.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 /*
2 * Copyright (c) 2011 The Chromium OS Authors. All rights reserved.
3 * Distributed under the terms of the GNU General Public License v2
4 */
5
6 #ifndef _REDUCE_H_
7 #define _REDUCE_H_ 1
8
9 #ifndef _STYLE_H_
10 #inclucde <style.h>
11 #endif
12
13 #ifndef _SYSCALL_H_
14 #include <syscall.h>
15 #endif
16
17 #ifndef _KTOP_H_
18 #include <ktop.h>
19 #endif
20
21 #ifndef _TICKCOUNTER_H_
22 #include <tickcounter.h>
23 #endif
24
25 struct timespec Sleep;
26
27 extern u64 *Old;
28 extern u64 *New;
29 extern int Delta[NUM_SYS_CALLS];
30 extern void *Rank_pidcall[MAX_PIDCALLS];
31 extern int Num_rank;
32 extern TickCounter_s TotalDelta;
33
34 extern void init_display(void);
35 extern void display(void);
36
37 #endif
OLDNEW
« no previous file with comments | « plot.c ('k') | reduce.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698