| OLD | NEW |
| 1 ; Copyright 2017 The Chromium Authors. All rights reserved. | 1 ; Copyright 2017 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 (version 1) | 4 (version 1) |
| 5 | 5 |
| 6 ; The top of this will be the V2 common profile. | 6 ; The top of this will be the V2 common profile. |
| 7 | 7 |
| 8 ; Helper function to check if a param is set to true. | 8 ; Helper function to check if a param is set to true. |
| 9 (define (param-true? str) (string=? (param str) "TRUE")) | 9 (define (param-true? str) (string=? (param str) "TRUE")) |
| 10 | 10 |
| (...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 (allow ipc-posix-shm-read-data | 110 (allow ipc-posix-shm-read-data |
| 111 (ipc-posix-name "apple.cfprefs.317580v1") | 111 (ipc-posix-name "apple.cfprefs.317580v1") |
| 112 (ipc-posix-name "apple.cfprefs.daemonv1") | 112 (ipc-posix-name "apple.cfprefs.daemonv1") |
| 113 (ipc-posix-name "apple.shm.notification_center")) | 113 (ipc-posix-name "apple.shm.notification_center")) |
| 114 | 114 |
| 115 ; mach IPC | 115 ; mach IPC |
| 116 (allow mach-lookup | 116 (allow mach-lookup |
| 117 (global-name "com.apple.distributed_notifications@Uv3") | 117 (global-name "com.apple.distributed_notifications@Uv3") |
| 118 (global-name "com.apple.fonts") | 118 (global-name "com.apple.fonts") |
| 119 (global-name "com.apple.logd") | 119 (global-name "com.apple.logd") |
| 120 (global-name "com.apple.lsd.mapdb") |
| 120 (global-name "com.apple.system.logger") | 121 (global-name "com.apple.system.logger") |
| 121 (global-name "com.apple.system.notification_center") | 122 (global-name "com.apple.system.notification_center") |
| 122 (global-name "com.apple.system.opendirectoryd.libinfo") | 123 (global-name "com.apple.system.opendirectoryd.libinfo") |
| 123 (global-name "com.apple.windowserver.active")) | 124 (global-name "com.apple.windowserver.active")) |
| 124 | 125 |
| 125 ; sysctl | 126 ; sysctl |
| 126 (allow sysctl-read | 127 (allow sysctl-read |
| 127 (sysctl-name "hw.activecpu") | 128 (sysctl-name "hw.activecpu") |
| 128 (sysctl-name "hw.busfrequency_compat") | 129 (sysctl-name "hw.busfrequency_compat") |
| 129 (sysctl-name "hw.byteorder") | 130 (sysctl-name "hw.byteorder") |
| 130 (sysctl-name "hw.cachelinesize_compat") | 131 (sysctl-name "hw.cachelinesize_compat") |
| 131 (sysctl-name "hw.cpufrequency_compat") | 132 (sysctl-name "hw.cpufrequency_compat") |
| 132 (sysctl-name "hw.cputype") | 133 (sysctl-name "hw.cputype") |
| 133 (sysctl-name "hw.machine") | 134 (sysctl-name "hw.machine") |
| 134 (sysctl-name "hw.ncpu") | 135 (sysctl-name "hw.ncpu") |
| 135 (sysctl-name "hw.pagesize_compat") | 136 (sysctl-name "hw.pagesize_compat") |
| 136 (sysctl-name "hw.physicalcpu_max") | 137 (sysctl-name "hw.physicalcpu_max") |
| 137 (sysctl-name "hw.tbfrequency_compat") | 138 (sysctl-name "hw.tbfrequency_compat") |
| 138 (sysctl-name "hw.vectorunit") | 139 (sysctl-name "hw.vectorunit") |
| 139 (sysctl-name "kern.hostname") | 140 (sysctl-name "kern.hostname") |
| 140 (sysctl-name "kern.maxfilesperproc") | 141 (sysctl-name "kern.maxfilesperproc") |
| 141 (sysctl-name "kern.osrelease") | 142 (sysctl-name "kern.osrelease") |
| 142 (sysctl-name "kern.ostype") | 143 (sysctl-name "kern.ostype") |
| 143 (sysctl-name "kern.osversion") | 144 (sysctl-name "kern.osversion") |
| 144 (sysctl-name "kern.version")) | 145 (sysctl-name "kern.version")) |
| OLD | NEW |