Bug 1014299 - Add times() to seccomp whitelist. r=kang

This system call seems to be used by some versions of the Qualcomm Adreno
graphics drivers when we run WebGL apps.
This commit is contained in:
Jed Davis 2014-06-02 14:52:00 +02:00
parent 4bd806b7d0
commit d1a5790ae4

View File

@ -152,6 +152,7 @@ SandboxFilterImpl::Build() {
Allow(SYSCALL(getpid));
Allow(SYSCALL(gettid));
Allow(SYSCALL(getrusage));
Allow(SYSCALL(times));
Allow(SYSCALL(madvise));
Allow(SYSCALL(dup));
Allow(SYSCALL(nanosleep));