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
Родитель c2c91ac963
Коммит 0fb3cb7f61
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -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));