diff options
author | mmentovai <mmentovai@4c0a9323-5329-0410-9bdc-e9ce6186880e> | 2010-04-02 16:46:13 +0000 |
---|---|---|
committer | mmentovai <mmentovai@4c0a9323-5329-0410-9bdc-e9ce6186880e> | 2010-04-02 16:46:13 +0000 |
commit | 5c27539f91d161f8f194c4c9d2c69b324f626122 (patch) | |
tree | b6010fca2422d71824ba1a742d630eb627693cb9 /src/common | |
parent | Breakpad Linux dumper: Use the correct section's base address. (diff) | |
download | breakpad-5c27539f91d161f8f194c4c9d2c69b324f626122.tar.xz |
Add gettimeofday to linux_syscall_support.h
Patch by Adam Langley <agl@chromium.org>.
R=me
git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@565 4c0a9323-5329-0410-9bdc-e9ce6186880e
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/linux/linux_syscall_support.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/common/linux/linux_syscall_support.h b/src/common/linux/linux_syscall_support.h index 1f06fd72..173d225b 100644 --- a/src/common/linux/linux_syscall_support.h +++ b/src/common/linux/linux_syscall_support.h @@ -2214,6 +2214,8 @@ struct kernel_statfs { #endif LSS_INLINE _syscall1(pid_t, getsid, pid_t, p) LSS_INLINE _syscall0(pid_t, _gettid) + LSS_INLINE _syscall2(pid_t, gettimeofday, struct kernel_timeval*, t, + void*, tz) LSS_INLINE _syscall5(int, setxattr, const char *,p, const char *, n, const void *,v, size_t, s, int, f) |