]>
Commit | Line | Data |
---|---|---|
1815bff5 | 1 | /* |
cf37c299 | 2 | * Copyright (c) 1999-2016 Apple Inc. All rights reserved. |
1815bff5 A |
3 | * |
4 | * @APPLE_LICENSE_HEADER_START@ | |
cf37c299 | 5 | * |
2fc1e207 A |
6 | * "Portions Copyright (c) 1999 Apple Computer, Inc. All Rights |
7 | * Reserved. This file contains Original Code and/or Modifications of | |
8 | * Original Code as defined in and that are subject to the Apple Public | |
9 | * Source License Version 1.0 (the 'License'). You may not use this file | |
10 | * except in compliance with the License. Please obtain a copy of the | |
11 | * License at http://www.apple.com/publicsource and read it before using | |
12 | * this file. | |
cf37c299 | 13 | * |
1815bff5 A |
14 | * The Original Code and all software distributed under the License are |
15 | * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER | |
16 | * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, | |
17 | * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, | |
2fc1e207 A |
18 | * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the |
19 | * License for the specific language governing rights and limitations | |
20 | * under the License." | |
cf37c299 | 21 | * |
1815bff5 A |
22 | * @APPLE_LICENSE_HEADER_END@ |
23 | */ | |
cf37c299 | 24 | /* |
1815bff5 A |
25 | * Mach Operating System |
26 | * Copyright (c) 1990 Carnegie-Mellon University | |
27 | * All rights reserved. The CMU software License Agreement specifies | |
28 | * the terms and conditions for use and redistribution. | |
29 | */ | |
30 | /* | |
31 | * File: hostinfo.c | |
32 | * Author: Avadis Tevanian, Jr. | |
33 | * | |
34 | * Copyright (C) 1987, Avadis Tevanian, Jr. | |
35 | * | |
36 | * Display information about the host this program is | |
37 | * execting on. | |
38 | */ | |
39 | ||
40 | #include <mach/mach.h> | |
41 | #include <mach/mach_error.h> | |
83f6dbe8 A |
42 | #include <sys/sysctl.h> |
43 | #include <sys/errno.h> | |
1815bff5 A |
44 | #include <stdio.h> |
45 | #include <stdlib.h> | |
46 | ||
47 | struct host_basic_info hi; | |
48 | kernel_version_t version; | |
49 | int slots[1024]; | |
50 | ||
cf37c299 A |
51 | int |
52 | main(int argc, char *argv[]) | |
1815bff5 A |
53 | { |
54 | kern_return_t ret; | |
34d340d7 | 55 | unsigned int size, count; |
1815bff5 | 56 | char *cpu_name, *cpu_subname; |
34d340d7 | 57 | int i; |
cf37c299 | 58 | int mib[2]; |
83f6dbe8 A |
59 | size_t len; |
60 | uint64_t memsize; | |
1815bff5 A |
61 | processor_set_name_port_t default_pset; |
62 | host_name_port_t host; | |
63 | struct processor_set_basic_info basic_info; | |
64 | struct processor_set_load_info load_info; | |
65 | ||
66 | host = mach_host_self(); | |
67 | ret = host_kernel_version(host, version); | |
68 | if (ret != KERN_SUCCESS) { | |
69 | mach_error(argv[0], ret); | |
70 | exit(EXIT_FAILURE); | |
71 | } | |
72 | printf("Mach kernel version:\n\t %s\n", version); | |
73 | size = sizeof(hi)/sizeof(int); | |
74 | ret = host_info(host, HOST_BASIC_INFO, (host_info_t)&hi, &size); | |
75 | if (ret != KERN_SUCCESS) { | |
76 | mach_error(argv[0], ret); | |
77 | exit(EXIT_FAILURE); | |
78 | } | |
79 | ||
80 | ret = processor_set_default(host, &default_pset); | |
81 | if (ret != KERN_SUCCESS) { | |
82 | mach_error(argv[0], ret); | |
83 | exit(EXIT_FAILURE); | |
84 | } | |
85 | ||
86 | count = PROCESSOR_SET_BASIC_INFO_COUNT; | |
87 | ret = processor_set_info(default_pset, PROCESSOR_SET_BASIC_INFO, | |
88 | &host, (processor_set_info_t)&basic_info, &count); | |
89 | if (ret != KERN_SUCCESS) { | |
90 | mach_error(argv[0], ret); | |
91 | exit(EXIT_FAILURE); | |
92 | } | |
93 | ||
94 | count = PROCESSOR_SET_LOAD_INFO_COUNT; | |
95 | ret = processor_set_statistics(default_pset, PROCESSOR_SET_LOAD_INFO, | |
96 | (processor_set_info_t)&load_info, &count); | |
97 | if (ret != KERN_SUCCESS) { | |
98 | mach_error(argv[0], ret); | |
99 | exit(EXIT_FAILURE); | |
100 | } | |
83f6dbe8 A |
101 | |
102 | mib[0] = CTL_HW; | |
103 | mib[1] = HW_MEMSIZE; | |
104 | len = sizeof(memsize); | |
105 | memsize = 0L; | |
106 | if(sysctl(mib, 2, &memsize, &len, NULL, 0 ) == -1) | |
107 | { | |
108 | perror("sysctl"); | |
109 | exit(EXIT_FAILURE); | |
110 | } | |
111 | ||
1815bff5 A |
112 | if (hi.max_cpus > 1) |
113 | printf("Kernel configured for up to %d processors.\n", | |
114 | hi.max_cpus); | |
115 | else | |
116 | printf("Kernel configured for a single processor only.\n"); | |
09fd88e4 A |
117 | printf("%d processor%s physically available.\n", hi.physical_cpu, |
118 | (hi.physical_cpu > 1) ? "s are" : " is"); | |
119 | ||
120 | printf("%d processor%s logically available.\n", hi.logical_cpu, | |
121 | (hi.logical_cpu > 1) ? "s are" : " is"); | |
1815bff5 A |
122 | |
123 | printf("Processor type:"); | |
124 | slot_name(hi.cpu_type, hi.cpu_subtype, &cpu_name, &cpu_subname); | |
125 | printf(" %s (%s)\n", cpu_name, cpu_subname); | |
126 | ||
127 | printf("Processor%s active:", (hi.avail_cpus > 1) ? "s" : ""); | |
cf37c299 | 128 | for (i = 0; i < hi.avail_cpus; i++) |
1815bff5 A |
129 | printf(" %d", i); |
130 | printf("\n"); | |
131 | ||
83f6dbe8 A |
132 | if (((float)memsize / (1024.0 * 1024.0)) >= 1024.0) |
133 | printf("Primary memory available: %.2f gigabytes\n", | |
134 | (float)memsize/(1024.0*1024.0*1024.0)); | |
135 | else | |
136 | printf("Primary memory available: %.2f megabytes\n", | |
137 | (float)memsize/(1024.0*1024.0)); | |
cf37c299 | 138 | |
1815bff5 A |
139 | printf("Default processor set: %d tasks, %d threads, %d processors\n", |
140 | load_info.task_count, load_info.thread_count, basic_info.processor_count); | |
141 | printf("Load average: %d.%02d, Mach factor: %d.%02d\n", | |
142 | load_info.load_average/LOAD_SCALE, | |
143 | (load_info.load_average%LOAD_SCALE)/10, | |
144 | load_info.mach_factor/LOAD_SCALE, | |
145 | (load_info.mach_factor%LOAD_SCALE)/10); | |
83f6dbe8 A |
146 | |
147 | exit(0); | |
1815bff5 | 148 | } |