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

Side by Side Diff: sigaction.cc

Issue 7326013: GCC 4.6 warnings cleanup (Closed) Base URL: http://seccompsandbox.googlecode.com/svn/trunk/
Patch Set: '' Created 9 years, 3 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 | « securemem.h ('k') | socketcall.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "debug.h" 5 #include "debug.h"
6 #include "sandbox_impl.h" 6 #include "sandbox_impl.h"
7 7
8 namespace playground { 8 namespace playground {
9 9
10 #if defined(__NR_sigaction) 10 #if defined(__NR_sigaction)
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
133 die("Failed to read parameters for sigaction() [process]"); 133 die("Failed to read parameters for sigaction() [process]");
134 } 134 }
135 if (sigaction_req.signum == SIGSEGV) { 135 if (sigaction_req.signum == SIGSEGV) {
136 // This should never happen. Something went wrong when intercepting the 136 // This should never happen. Something went wrong when intercepting the
137 // system call. This is not a security problem, but it clearly doesn't 137 // system call. This is not a security problem, but it clearly doesn't
138 // make sense to let the system call pass. 138 // make sense to let the system call pass.
139 SecureMem::abandonSystemCall(*info, -EINVAL); 139 SecureMem::abandonSystemCall(*info, -EINVAL);
140 return false; 140 return false;
141 } 141 }
142 SecureMem::sendSystemCall(*info, SecureMem::SEND_UNLOCKED, 142 SecureMem::sendSystemCall(*info, SecureMem::SEND_UNLOCKED,
143 sigaction_req.signum, sigaction_req.action, 143 sigaction_req.signum,
144 sigaction_req.old_action, sigaction_req.sigsetsize); 144 const_cast<SysCalls::kernel_sigaction*>(sigaction_req.action),
145 const_cast<SysCalls::kernel_sigaction*>(sigaction_req.old_action),
146 sigaction_req.sigsetsize);
145 return true; 147 return true;
146 } 148 }
147 149
148 } // namespace 150 } // namespace
OLDNEW
« no previous file with comments | « securemem.h ('k') | socketcall.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698