| Index: sandbox/linux/seccomp/exit.cc
|
| ===================================================================
|
| --- sandbox/linux/seccomp/exit.cc (revision 31339)
|
| +++ sandbox/linux/seccomp/exit.cc (working copy)
|
| @@ -22,10 +22,11 @@
|
| }
|
| }
|
|
|
| -bool Sandbox::process_exit(int parentProc, int sandboxFd, int threadFdPub,
|
| +bool Sandbox::process_exit(int parentMapsFd, int sandboxFd, int threadFdPub,
|
| int threadFd, SecureMem::Args* mem) {
|
| - SecureMem::lockSystemCall(parentProc, mem);
|
| - SecureMem::sendSystemCall(threadFdPub, true, parentProc, mem, __NR_exit, 0);
|
| + SecureMem::lockSystemCall(parentMapsFd, mem);
|
| + SecureMem::sendSystemCall(threadFdPub, true, parentMapsFd, mem,
|
| + __NR_exit, 0);
|
| return true;
|
| }
|
|
|
|
|
| Property changes on: sandbox/linux/seccomp/exit.cc
|
| ___________________________________________________________________
|
| Added: svn:eol-style
|
| + LF
|
|
|
|
|