Commit b37916c9 authored by cevans@chromium.org's avatar cevans@chromium.org

Allow ugetrlimit() whenever we allow getrlimit() as the calls are pretty

much identical.

BUG=226965
R=jln@chromium.org

Review URL: https://codereview.chromium.org/16019017

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@202979 0039d316-1c4b-4281-b951-d872f2087c98
parent 013b50f6
......@@ -1556,6 +1556,9 @@ ErrorCode RendererOrWorkerProcessPolicy(Sandbox *sandbox, int sysno, void *) {
case __NR_getpriority:
#if defined(__i386__) || defined(__x86_64__)
case __NR_getrlimit:
#endif
#if defined(__i386__) || defined(__arm__)
case __NR_ugetrlimit:
#endif
case __NR_mremap: // See crbug.com/149834.
case __NR_pread64:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment