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

Unified Diff: sandbox/linux/seccomp/open.cc

Issue 997009: Compute and pring the time that it takes to execute system calls. This data... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sandbox/linux/seccomp/munmap.cc ('k') | sandbox/linux/seccomp/securemem.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sandbox/linux/seccomp/open.cc
===================================================================
--- sandbox/linux/seccomp/open.cc (revision 41782)
+++ sandbox/linux/seccomp/open.cc (working copy)
@@ -8,7 +8,8 @@
namespace playground {
int Sandbox::sandbox_open(const char *pathname, int flags, mode_t mode) {
- Debug::syscall(__NR_open, "Executing handler");
+ long long tm;
+ Debug::syscall(&tm, __NR_open, "Executing handler");
size_t len = strlen(pathname);
struct Request {
int sysnum;
@@ -31,6 +32,7 @@
read(sys, threadFdPub(), &rc, sizeof(rc)) != sizeof(rc)) {
die("Failed to forward open() request [sandbox]");
}
+ Debug::elapsed(tm, __NR_open);
return static_cast<int>(rc);
}
« no previous file with comments | « sandbox/linux/seccomp/munmap.cc ('k') | sandbox/linux/seccomp/securemem.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698