Searched refs:proc_cputype (Results 1 – 1 of 1) sorted by relevance
| /xnu-8020.140.41/bsd/kern/ |
| H A D | kern_sysctl.c | 3701 cpu_type_t proc_cputype = 0; in sysctl_sysctl_native() local 3702 if ((error = fetch_process_cputype(req->p, (int *)arg1, arg2, &proc_cputype)) != 0) { in sysctl_sysctl_native() 3706 if ((proc_cputype & ~CPU_ARCH_MASK) != (cpu_type() & ~CPU_ARCH_MASK)) { in sysctl_sysctl_native() 3718 cpu_type_t proc_cputype = 0; in sysctl_sysctl_cputype() local 3719 if ((error = fetch_process_cputype(req->p, (int *)arg1, arg2, &proc_cputype)) != 0) { in sysctl_sysctl_cputype() 3722 return SYSCTL_OUT(req, &proc_cputype, sizeof(proc_cputype)); in sysctl_sysctl_cputype() 3724 SYSCTL_PROC(_sysctl, OID_AUTO, proc_cputype, CTLTYPE_NODE | CTLFLAG_RD | CTLFLAG_LOCKED, 0, 0, sysc…
|