This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/arch/arm/kernel/perf_event.c b/arch/arm/kernel/perf_event.c | |
index ab243b8..cb1d8e8 100644 | |
--- a/arch/arm/kernel/perf_event.c | |
+++ b/arch/arm/kernel/perf_event.c | |
@@ -20,7 +20,7 @@ | |
#include <linux/platform_device.h> | |
#include <linux/spinlock.h> | |
#include <linux/uaccess.h> | |
- | |
+#include <linux/irq.h> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set noexpandtab " use tabs, not spaces | |
set tabstop=8 " tabstops of 8 | |
set shiftwidth=8 " indents of 8 | |
set textwidth=78 " screen in 80 columns wide, wrap at 78 | |
set autoindent smartindent " turn on auto/smart indenting | |
set smarttab " make <tab> and <backspace> smarter | |
set backspace=eol,start,indent " allow backspacing over indent, eol, & start | |
filetype plugin indent on |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env stap | |
global samples | |
global all_samples | |
global timestamp | |
probe process("node").mark("gc__start") | |
{ | |
timestamp = gettimeofday_us() | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
"""Simple HTTP Server With Upload. | |
This module builds on BaseHTTPServer by implementing the standard GET | |
and HEAD requests in a fairly straightforward manner. | |
""" |
NewerOlder