diff options
author | ted.mielczarek <ted.mielczarek@4c0a9323-5329-0410-9bdc-e9ce6186880e> | 2009-12-03 18:16:31 +0000 |
---|---|---|
committer | ted.mielczarek <ted.mielczarek@4c0a9323-5329-0410-9bdc-e9ce6186880e> | 2009-12-03 18:16:31 +0000 |
commit | 72a2bff5929902e21feeb8d0a8223a324940c95d (patch) | |
tree | c7a3534a5d83ee9e8ee53df873be2b8945cf76e7 /src/common/linux | |
parent | issue 336 - Look for libcurl-gnutls in addition to libcurl.so. Patch by Karl ... (diff) | |
download | breakpad-72a2bff5929902e21feeb8d0a8223a324940c95d.tar.xz |
issue 330 - linux_syscall_support.h has extra semicolons causing compilation to fail with certain gcc options. Patch by Josh Aas <joshmoz@gmail.com>, r=me
git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@436 4c0a9323-5329-0410-9bdc-e9ce6186880e
Diffstat (limited to 'src/common/linux')
-rw-r--r-- | src/common/linux/linux_syscall_support.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/common/linux/linux_syscall_support.h b/src/common/linux/linux_syscall_support.h index 8f4de92a..f95400dc 100644 --- a/src/common/linux/linux_syscall_support.h +++ b/src/common/linux/linux_syscall_support.h @@ -2127,9 +2127,9 @@ struct kernel_statfs { size_t, c) LSS_INLINE _syscall4(int, rt_sigprocmask, int, h, const struct kernel_sigset_t*, s, - struct kernel_sigset_t*, o, size_t, c); + struct kernel_sigset_t*, o, size_t, c) LSS_INLINE _syscall2(int, rt_sigsuspend, - const struct kernel_sigset_t*, s, size_t, c); + const struct kernel_sigset_t*, s, size_t, c) LSS_INLINE _syscall3(int, sched_getaffinity,pid_t, p, unsigned int, l, unsigned long *, m) LSS_INLINE _syscall3(int, sched_setaffinity,pid_t, p, @@ -2769,7 +2769,7 @@ struct kernel_statfs { const void *, b, size_t, c, unsigned, o1, long, o2) LSS_INLINE _syscall4(int, _readahead, int, f, - unsigned, o1, unsigned, o2, size_t, c); + unsigned, o1, unsigned, o2, size_t, c) /* We force 64bit-wide parameters onto the stack, then access each * 32-bit component individually. This guarantees that we build the * correct parameters independent of the native byte-order of the |