2 * Copyright 2008-2011 Novell Inc
3 * Copyright 2011 Xamarin Inc
4 * Licensed under the MIT license. See LICENSE file in the project root for full license information.
8 #include "utils/mono-proclib.h"
9 #include "utils/mono-time.h"
18 #ifdef HAVE_SCHED_GETAFFINITY
22 #if defined(_POSIX_VERSION)
23 #include <sys/errno.h>
24 #include <sys/param.h>
26 #ifdef HAVE_SYS_TYPES_H
27 #include <sys/types.h>
29 #ifdef HAVE_SYS_SYSCTL_H
30 #include <sys/sysctl.h>
32 #include <sys/resource.h>
34 #if defined(__APPLE__) || defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__NetBSD__)
36 #if defined(__APPLE__)
37 #include <mach/mach.h>
39 #ifdef HAVE_SYS_USER_H
42 #ifdef HAVE_STRUCT_KINFO_PROC_KP_PROC
43 # define kinfo_starttime_member kp_proc.p_starttime
44 # define kinfo_pid_member kp_proc.p_pid
45 # define kinfo_name_member kp_proc.p_comm
46 #elif defined(__NetBSD__)
47 # define kinfo_starttime_member p_ustart_sec
48 # define kinfo_pid_member p_pid
49 # define kinfo_name_member p_comm
50 #elif defined(__OpenBSD__)
51 // Can not figure out how to get the proc's start time on OpenBSD
52 # undef kinfo_starttime_member
53 # define kinfo_pid_member p_pid
54 # define kinfo_name_member p_comm
56 #define kinfo_starttime_member ki_start
57 #define kinfo_pid_member ki_pid
58 #define kinfo_name_member ki_comm
65 * @size: a pointer to a location where the size of the returned array is stored
67 * Return an array of pid values for the processes currently running on the system.
68 * The size of the array is stored in @size.
71 mono_process_list (int *size
)
77 size_t data_len
= sizeof (struct kinfo_proc2
) * 400;
78 struct kinfo_proc2
*processes
= g_malloc (data_len
);
81 size_t data_len
= sizeof (struct kinfo_proc
) * 16;
82 struct kinfo_proc
*processes
;
84 #endif /* KERN_PROC2 */
96 mib
[2] = KERN_PROC_ALL
;
98 mib
[4] = sizeof(struct kinfo_proc2
);
99 mib
[5] = 400; /* XXX */
101 res
= sysctl (mib
, 6, processes
, &data_len
, NULL
, 0);
111 mib
[2] = KERN_PROC_ALL
;
114 res
= sysctl (mib
, 4, NULL
, &data_len
, NULL
, 0);
117 processes
= (struct kinfo_proc
*) g_malloc (data_len
);
118 res
= sysctl (mib
, 4, processes
, &data_len
, NULL
, 0);
128 #endif /* KERN_PROC2 */
131 res
= data_len
/sizeof (struct kinfo_proc2
);
133 res
= data_len
/sizeof (struct kinfo_proc
);
134 #endif /* KERN_PROC2 */
135 buf
= (void **) g_realloc (buf
, res
* sizeof (void*));
136 for (i
= 0; i
< res
; ++i
)
137 buf
[i
] = GINT_TO_POINTER (processes
[i
].kinfo_pid_member
);
142 #elif defined(__HAIKU__)
143 /* FIXME: Add back the code from 9185fcc305e43428d0f40f3ee37c8a405d41c9ae */
144 g_assert_not_reached ();
151 GDir
*dir
= g_dir_open ("/proc/", 0, NULL
);
157 while ((name
= g_dir_read_name (dir
))) {
160 pid
= strtol (name
, &nend
, 10);
161 if (pid
<= 0 || nend
== name
|| *nend
)
168 buf
= (void **)g_realloc (buf
, count
* sizeof (void*));
170 buf
[i
++] = GINT_TO_POINTER (pid
);
179 static G_GNUC_UNUSED
char*
180 get_pid_status_item_buf (int pid
, const char *item
, char *rbuf
, int blen
, MonoProcessError
*error
)
185 size_t len
= strlen (item
);
187 g_snprintf (buf
, sizeof (buf
), "/proc/%d/status", pid
);
188 f
= fopen (buf
, "r");
191 *error
= MONO_PROCESS_ERROR_NOT_FOUND
;
194 while ((s
= fgets (buf
, sizeof (buf
), f
))) {
197 if (strncmp (buf
, item
, len
))
200 while (g_ascii_isspace (*s
)) s
++;
203 while (g_ascii_isspace (*s
)) s
++;
206 strncpy (rbuf
, s
, MIN (len
, blen
));
207 rbuf
[MIN (len
, blen
) - 1] = 0;
209 *error
= MONO_PROCESS_ERROR_NONE
;
214 *error
= MONO_PROCESS_ERROR_OTHER
;
221 #define KINFO_PROC struct kinfo_proc2
223 #define KINFO_PROC struct kinfo_proc
227 sysctl_kinfo_proc (gpointer pid
, KINFO_PROC
* processi
)
230 size_t data_len
= sizeof (KINFO_PROC
);
235 mib
[1] = KERN_PROC2
;
236 mib
[2] = KERN_PROC_PID
;
237 mib
[3] = GPOINTER_TO_UINT (pid
);
238 mib
[4] = sizeof(KINFO_PROC
);
239 mib
[5] = 400; /* XXX */
241 res
= sysctl (mib
, 6, processi
, &data_len
, NULL
, 0);
246 mib
[2] = KERN_PROC_PID
;
247 mib
[3] = GPOINTER_TO_UINT (pid
);
249 res
= sysctl (mib
, 4, processi
, &data_len
, NULL
, 0);
250 #endif /* KERN_PROC2 */
252 if (res
< 0 || data_len
!= sizeof (KINFO_PROC
))
257 #endif /* USE_SYSCTL */
260 * mono_process_get_name:
261 * @pid: pid of the process
262 * @buf: byte buffer where to store the name of the prcoess
263 * @len: size of the buffer @buf
265 * Return the name of the process identified by @pid, storing it
266 * inside @buf for a maximum of len bytes (including the terminating 0).
269 mono_process_get_name (gpointer pid
, char *buf
, int len
)
274 memset (buf
, 0, len
);
276 if (sysctl_kinfo_proc (pid
, &processi
))
277 strncpy (buf
, processi
.kinfo_name_member
, len
- 1);
285 sprintf (fname
, "/proc/%d/cmdline", GPOINTER_TO_INT (pid
));
287 file
= fopen (fname
, "r");
290 r
= fread (buf
, 1, len
- 1, file
);
293 p
= strrchr (buf
, '/');
297 return get_pid_status_item_buf (GPOINTER_TO_INT (pid
), "Name", buf
, len
, NULL
);
304 mono_process_get_times (gpointer pid
, gint64
*start_time
, gint64
*user_time
, gint64
*kernel_time
)
307 *user_time
= mono_process_get_data (pid
, MONO_PROCESS_USER_TIME
);
310 *kernel_time
= mono_process_get_data (pid
, MONO_PROCESS_SYSTEM_TIME
);
315 #if USE_SYSCTL && defined(kinfo_starttime_member)
319 if (sysctl_kinfo_proc (pid
, &processi
)) {
320 #if defined(__NetBSD__)
322 tv
.tv_sec
= processi
.kinfo_starttime_member
;
323 tv
.tv_usec
= processi
.p_ustart_usec
;
324 *start_time
= mono_100ns_datetime_from_timeval(tv
);
326 *start_time
= mono_100ns_datetime_from_timeval (processi
.kinfo_starttime_member
);
332 if (*start_time
== 0) {
333 static guint64 boot_time
= 0;
335 boot_time
= mono_100ns_datetime () - mono_msec_boottime () * 10000;
337 *start_time
= boot_time
+ mono_process_get_data (pid
, MONO_PROCESS_ELAPSED
);
343 * /proc/pid/stat format:
345 * [0] ppid pgid sid tty_nr tty_pgrp flags min_flt cmin_flt maj_flt cmaj_flt
346 * [10] utime stime cutime cstime prio nice threads 0 start_time vsize
347 * [20] rss rsslim start_code end_code start_stack esp eip pending blocked sigign
348 * [30] sigcatch wchan 0 0 exit_signal cpu rt_prio policy
351 #define RET_ERROR(err) do { \
352 if (error) *error = (err); \
357 get_process_stat_item (int pid
, int pos
, int sum
, MonoProcessError
*error
)
359 #if defined(__APPLE__)
360 double process_user_time
= 0, process_system_time
= 0;//, process_percent = 0;
362 struct task_basic_info t_info
;
363 mach_msg_type_number_t t_info_count
= TASK_BASIC_INFO_COUNT
, th_count
;
364 thread_array_t th_array
;
368 if (pid
== getpid ()) {
369 /* task_for_pid () doesn't work on ios, even for the current process */
370 task
= mach_task_self ();
373 ret
= task_for_pid (mach_task_self (), pid
, &task
);
374 } while (ret
== KERN_ABORTED
);
376 if (ret
!= KERN_SUCCESS
)
377 RET_ERROR (MONO_PROCESS_ERROR_NOT_FOUND
);
381 ret
= task_info (task
, TASK_BASIC_INFO
, (task_info_t
)&t_info
, &t_info_count
);
382 } while (ret
== KERN_ABORTED
);
384 if (ret
!= KERN_SUCCESS
) {
385 if (pid
!= getpid ())
386 mach_port_deallocate (mach_task_self (), task
);
387 RET_ERROR (MONO_PROCESS_ERROR_OTHER
);
391 ret
= task_threads (task
, &th_array
, &th_count
);
392 } while (ret
== KERN_ABORTED
);
394 if (ret
!= KERN_SUCCESS
) {
395 if (pid
!= getpid ())
396 mach_port_deallocate (mach_task_self (), task
);
397 RET_ERROR (MONO_PROCESS_ERROR_OTHER
);
400 for (i
= 0; i
< th_count
; i
++) {
401 double thread_user_time
, thread_system_time
;//, thread_percent;
403 struct thread_basic_info th_info
;
404 mach_msg_type_number_t th_info_count
= THREAD_BASIC_INFO_COUNT
;
406 ret
= thread_info(th_array
[i
], THREAD_BASIC_INFO
, (thread_info_t
)&th_info
, &th_info_count
);
407 } while (ret
== KERN_ABORTED
);
409 if (ret
== KERN_SUCCESS
) {
410 thread_user_time
= th_info
.user_time
.seconds
+ th_info
.user_time
.microseconds
/ 1e6
;
411 thread_system_time
= th_info
.system_time
.seconds
+ th_info
.system_time
.microseconds
/ 1e6
;
412 //thread_percent = (double)th_info.cpu_usage / TH_USAGE_SCALE;
414 process_user_time
+= thread_user_time
;
415 process_system_time
+= thread_system_time
;
416 //process_percent += th_percent;
420 for (i
= 0; i
< th_count
; i
++)
421 mach_port_deallocate(task
, th_array
[i
]);
423 if (pid
!= getpid ())
424 mach_port_deallocate (mach_task_self (), task
);
426 process_user_time
+= t_info
.user_time
.seconds
+ t_info
.user_time
.microseconds
/ 1e6
;
427 process_system_time
+= t_info
.system_time
.seconds
+ t_info
.system_time
.microseconds
/ 1e6
;
429 if (pos
== 10 && sum
== TRUE
)
430 return (gint64
)((process_user_time
+ process_system_time
) * 10000000);
432 return (gint64
)(process_user_time
* 10000000);
434 return (gint64
)(process_system_time
* 10000000);
445 g_snprintf (buf
, sizeof (buf
), "/proc/%d/stat", pid
);
446 f
= fopen (buf
, "r");
448 RET_ERROR (MONO_PROCESS_ERROR_NOT_FOUND
);
449 len
= fread (buf
, 1, sizeof (buf
), f
);
452 RET_ERROR (MONO_PROCESS_ERROR_OTHER
);
453 s
= strchr (buf
, ')');
455 RET_ERROR (MONO_PROCESS_ERROR_OTHER
);
457 while (g_ascii_isspace (*s
)) s
++;
459 RET_ERROR (MONO_PROCESS_ERROR_OTHER
);
460 /* skip the status char */
461 while (*s
&& !g_ascii_isspace (*s
)) s
++;
463 RET_ERROR (MONO_PROCESS_ERROR_OTHER
);
464 for (i
= 0; i
< pos
; ++i
) {
465 while (g_ascii_isspace (*s
)) s
++;
467 RET_ERROR (MONO_PROCESS_ERROR_OTHER
);
468 while (*s
&& !g_ascii_isspace (*s
)) s
++;
470 RET_ERROR (MONO_PROCESS_ERROR_OTHER
);
472 /* we are finally at the needed item */
473 value
= strtoul (s
, &end
, 0);
474 /* add also the following value */
476 while (g_ascii_isspace (*s
)) s
++;
478 RET_ERROR (MONO_PROCESS_ERROR_OTHER
);
479 value
+= strtoul (s
, &end
, 0);
482 *error
= MONO_PROCESS_ERROR_NONE
;
490 static int user_hz
= 0;
493 user_hz
= sysconf (_SC_CLK_TCK
);
502 get_process_stat_time (int pid
, int pos
, int sum
, MonoProcessError
*error
)
504 gint64 val
= get_process_stat_item (pid
, pos
, sum
, error
);
505 #if defined(__APPLE__)
508 /* return 100ns ticks */
509 return (val
* 10000000) / get_user_hz ();
514 get_pid_status_item (int pid
, const char *item
, MonoProcessError
*error
, int multiplier
)
516 #if defined(__APPLE__)
517 // ignore the multiplier
521 struct task_basic_info t_info
;
522 mach_msg_type_number_t th_count
= TASK_BASIC_INFO_COUNT
;
523 kern_return_t mach_ret
;
525 if (pid
== getpid ()) {
526 /* task_for_pid () doesn't work on ios, even for the current process */
527 task
= mach_task_self ();
530 mach_ret
= task_for_pid (mach_task_self (), pid
, &task
);
531 } while (mach_ret
== KERN_ABORTED
);
533 if (mach_ret
!= KERN_SUCCESS
)
534 RET_ERROR (MONO_PROCESS_ERROR_NOT_FOUND
);
538 mach_ret
= task_info (task
, TASK_BASIC_INFO
, (task_info_t
)&t_info
, &th_count
);
539 } while (mach_ret
== KERN_ABORTED
);
541 if (mach_ret
!= KERN_SUCCESS
) {
542 if (pid
!= getpid ())
543 mach_port_deallocate (mach_task_self (), task
);
544 RET_ERROR (MONO_PROCESS_ERROR_OTHER
);
547 if (strcmp (item
, "VmRSS") == 0 || strcmp (item
, "VmHWM") == 0 || strcmp (item
, "VmData") == 0)
548 ret
= t_info
.resident_size
;
549 else if (strcmp (item
, "VmSize") == 0 || strcmp (item
, "VmPeak") == 0)
550 ret
= t_info
.virtual_size
;
551 else if (strcmp (item
, "Threads") == 0)
556 if (pid
!= getpid ())
557 mach_port_deallocate (mach_task_self (), task
);
564 s
= get_pid_status_item_buf (pid
, item
, buf
, sizeof (buf
), error
);
566 return ((gint64
) atol (s
)) * multiplier
;
572 * mono_process_get_data:
573 * @pid: pid of the process
574 * @data: description of data to return
576 * Return a data item of a process like user time, memory use etc,
577 * according to the @data argumet.
580 mono_process_get_data_with_error (gpointer pid
, MonoProcessData data
, MonoProcessError
*error
)
583 int rpid
= GPOINTER_TO_INT (pid
);
586 *error
= MONO_PROCESS_ERROR_OTHER
;
589 case MONO_PROCESS_NUM_THREADS
:
590 return get_pid_status_item (rpid
, "Threads", error
, 1);
591 case MONO_PROCESS_USER_TIME
:
592 return get_process_stat_time (rpid
, 10, FALSE
, error
);
593 case MONO_PROCESS_SYSTEM_TIME
:
594 return get_process_stat_time (rpid
, 11, FALSE
, error
);
595 case MONO_PROCESS_TOTAL_TIME
:
596 return get_process_stat_time (rpid
, 10, TRUE
, error
);
597 case MONO_PROCESS_WORKING_SET
:
598 return get_pid_status_item (rpid
, "VmRSS", error
, 1024);
599 case MONO_PROCESS_WORKING_SET_PEAK
:
600 val
= get_pid_status_item (rpid
, "VmHWM", error
, 1024);
602 val
= get_pid_status_item (rpid
, "VmRSS", error
, 1024);
604 case MONO_PROCESS_PRIVATE_BYTES
:
605 return get_pid_status_item (rpid
, "VmData", error
, 1024);
606 case MONO_PROCESS_VIRTUAL_BYTES
:
607 return get_pid_status_item (rpid
, "VmSize", error
, 1024);
608 case MONO_PROCESS_VIRTUAL_BYTES_PEAK
:
609 val
= get_pid_status_item (rpid
, "VmPeak", error
, 1024);
611 val
= get_pid_status_item (rpid
, "VmSize", error
, 1024);
613 case MONO_PROCESS_FAULTS
:
614 return get_process_stat_item (rpid
, 6, TRUE
, error
);
615 case MONO_PROCESS_ELAPSED
:
616 return get_process_stat_time (rpid
, 18, FALSE
, error
);
617 case MONO_PROCESS_PPID
:
618 return get_process_stat_time (rpid
, 0, FALSE
, error
);
619 case MONO_PROCESS_PAGED_BYTES
:
620 return get_pid_status_item (rpid
, "VmSwap", error
, 1024);
623 case MONO_PROCESS_END
:
630 mono_process_get_data (gpointer pid
, MonoProcessData data
)
632 MonoProcessError error
;
633 return mono_process_get_data_with_error (pid
, data
, &error
);
638 mono_process_current_pid ()
640 #if defined(HAVE_UNISTD_H)
641 return (int) getpid ();
646 #endif /* !HOST_WIN32 */
651 * Return the number of processors on the system.
655 mono_cpu_count (void)
657 #ifdef PLATFORM_ANDROID
658 /* Android tries really hard to save power by powering off CPUs on SMP phones which
659 * means the normal way to query cpu count returns a wrong value with userspace API.
660 * Instead we use /sys entries to query the actual hardware CPU count.
663 char buffer
[8] = {'\0'};
664 int present
= open ("/sys/devices/system/cpu/present", O_RDONLY
);
665 /* Format of the /sys entry is a cpulist of indexes which in the case
666 * of present is always of the form "0-(n-1)" when there is more than
667 * 1 core, n being the number of CPU cores in the system. Otherwise
668 * the value is simply 0
670 if (present
!= -1 && read (present
, (char*)buffer
, sizeof (buffer
)) > 3)
671 count
= strtol (((char*)buffer
) + 2, NULL
, 10);
678 #if defined(HOST_ARM) || defined (HOST_ARM64)
681 * Recap from Alexander Köplinger <alex.koeplinger@outlook.com>:
683 * When we merged the change from PR #2722, we started seeing random failures on ARM in
684 * the MonoTests.System.Threading.ThreadPoolTests.SetAndGetMaxThreads and
685 * MonoTests.System.Threading.ManualResetEventSlimTests.Constructor_Defaults tests. Both
686 * of those tests are dealing with Environment.ProcessorCount to verify some implementation
689 * It turns out that on the Jetson TK1 board we use on public Jenkins and on ARM kernels
690 * in general, the value returned by sched_getaffinity (or _SC_NPROCESSORS_ONLN) doesn't
691 * contain CPUs/cores that are powered off for power saving reasons. This is contrary to
692 * what happens on x86, where even cores in deep-sleep state are returned [1], [2]. This
693 * means that we would get a processor count of 1 at one point in time and a higher value
694 * when load increases later on as the system wakes CPUs.
696 * Various runtime pieces like the threadpool and also user code however relies on the
697 * value returned by Environment.ProcessorCount e.g. for deciding how many parallel tasks
698 * to start, thereby limiting the performance when that code thinks we only have one CPU.
700 * Talking to a few people, this was the reason why we changed to _SC_NPROCESSORS_CONF in
701 * mono#1688 and why we added a special case for Android in mono@de3addc to get the "real"
702 * number of processors in the system.
704 * Because of those issues Android/Dalvik also switched from _ONLN to _SC_NPROCESSORS_CONF
705 * for the Java API Runtime.availableProcessors() too [3], citing:
706 * > Traditionally this returned the number currently online, but many mobile devices are
707 * able to take unused cores offline to save power, so releases newer than Android 4.2 (Jelly
708 * Bean) return the maximum number of cores that could be made available if there were no
709 * power or heat constraints.
711 * The problem with sticking to _SC_NPROCESSORS_CONF however is that it breaks down in
712 * constrained environments like Docker or with an explicit CPU affinity set by the Linux
713 * `taskset` command, They'd get a higher CPU count than can be used, start more threads etc.
714 * which results in unnecessary context switches and overloaded systems. That's why we need
715 * to respect sched_getaffinity.
717 * So while in an ideal world we would be able to rely on sched_getaffinity/_SC_NPROCESSORS_ONLN
718 * to return the number of theoretically available CPUs regardless of power saving measures
719 * everywhere, we can't do this on ARM.
721 * I think the pragmatic solution is the following:
722 * * use sched_getaffinity (+ fallback to _SC_NPROCESSORS_ONLN in case of error) on x86. This
723 * ensures we're inline with what OpenJDK [4] and CoreCLR [5] do
724 * * use _SC_NPROCESSORS_CONF exclusively on ARM (I think we could eventually even get rid of
725 * the PLATFORM_ANDROID special case)
729 * [1] https://sourceware.org/ml/libc-alpha/2013-07/msg00383.html
730 * [2] https://lists.01.org/pipermail/powertop/2012-September/000433.html
731 * [3] https://android.googlesource.com/platform/libcore/+/750dc634e56c58d1d04f6a138734ac2b772900b5%5E1..750dc634e56c58d1d04f6a138734ac2b772900b5/
732 * [4] https://bugs.openjdk.java.net/browse/JDK-6515172
733 * [5] https://github.com/dotnet/coreclr/blob/7058273693db2555f127ce16e6b0c5b40fb04867/src/pal/src/misc/sysinfo.cpp#L148
736 #ifdef _SC_NPROCESSORS_CONF
738 int count
= sysconf (_SC_NPROCESSORS_CONF
);
746 #ifdef HAVE_SCHED_GETAFFINITY
749 if (sched_getaffinity (mono_process_current_pid (), sizeof (set
), &set
) == 0)
750 return CPU_COUNT (&set
);
753 #ifdef _SC_NPROCESSORS_ONLN
755 int count
= sysconf (_SC_NPROCESSORS_ONLN
);
761 #endif /* defined(HOST_ARM) || defined (HOST_ARM64) */
767 size_t len
= sizeof (int);
770 if (sysctl (mib
, 2, &count
, &len
, NULL
, 0) == 0)
777 #endif /* !HOST_WIN32 */
780 get_cpu_times (int cpu_id
, gint64
*user
, gint64
*systemt
, gint64
*irq
, gint64
*sirq
, gint64
*idle
)
784 int hz
= get_user_hz ();
785 guint64 user_ticks
= 0, nice_ticks
= 0, system_ticks
= 0, idle_ticks
= 0, irq_ticks
= 0, sirq_ticks
= 0;
786 FILE *f
= fopen ("/proc/stat", "r");
790 hz
*= mono_cpu_count ();
791 while ((s
= fgets (buf
, sizeof (buf
), f
))) {
793 if (cpu_id
< 0 && strncmp (s
, "cpu", 3) == 0 && g_ascii_isspace (s
[3])) {
795 } else if (cpu_id
>= 0 && strncmp (s
, "cpu", 3) == 0 && strtol (s
+ 3, &data
, 10) == cpu_id
) {
803 user_ticks
= strtoull (data
, &data
, 10);
804 nice_ticks
= strtoull (data
, &data
, 10);
805 system_ticks
= strtoull (data
, &data
, 10);
806 idle_ticks
= strtoull (data
, &data
, 10);
807 /* iowait_ticks = strtoull (data, &data, 10); */
808 irq_ticks
= strtoull (data
, &data
, 10);
809 sirq_ticks
= strtoull (data
, &data
, 10);
815 *user
= (user_ticks
+ nice_ticks
) * 10000000 / hz
;
817 *systemt
= (system_ticks
) * 10000000 / hz
;
819 *irq
= (irq_ticks
) * 10000000 / hz
;
821 *sirq
= (sirq_ticks
) * 10000000 / hz
;
823 *idle
= (idle_ticks
) * 10000000 / hz
;
828 * @cpu_id: processor number or -1 to get a summary of all the processors
829 * @data: type of data to retrieve
831 * Get data about a processor on the system, like time spent in user space or idle time.
834 mono_cpu_get_data (int cpu_id
, MonoCpuData data
, MonoProcessError
*error
)
839 *error
= MONO_PROCESS_ERROR_NONE
;
841 case MONO_CPU_USER_TIME
:
842 get_cpu_times (cpu_id
, &value
, NULL
, NULL
, NULL
, NULL
);
844 case MONO_CPU_PRIV_TIME
:
845 get_cpu_times (cpu_id
, NULL
, &value
, NULL
, NULL
, NULL
);
847 case MONO_CPU_INTR_TIME
:
848 get_cpu_times (cpu_id
, NULL
, NULL
, &value
, NULL
, NULL
);
850 case MONO_CPU_DCP_TIME
:
851 get_cpu_times (cpu_id
, NULL
, NULL
, NULL
, &value
, NULL
);
853 case MONO_CPU_IDLE_TIME
:
854 get_cpu_times (cpu_id
, NULL
, NULL
, NULL
, NULL
, &value
);
865 mono_atexit (void (*func
)(void))
867 #ifdef PLATFORM_ANDROID
868 /* Some versions of android libc doesn't define atexit () */
871 return atexit (func
);
876 * This function returns the cpu usage in percentage,
877 * normalized on the number of cores.
879 * Warning : the percentage returned can be > 100%. This
880 * might happens on systems like Android which, for
881 * battery and performance reasons, shut down cores and
882 * lie about the number of active cores.
886 mono_cpu_usage (MonoCpuUsageState
*prev
)
888 gint32 cpu_usage
= 0;
889 gint64 cpu_total_time
;
890 gint64 cpu_busy_time
;
891 struct rusage resource_usage
;
896 if (getrusage (RUSAGE_SELF
, &resource_usage
) == -1) {
897 g_error ("getrusage() failed, errno is %d (%s)\n", errno
, strerror (errno
));
901 current_time
= mono_100ns_ticks ();
902 kernel_time
= resource_usage
.ru_stime
.tv_sec
* 1000 * 1000 * 10 + resource_usage
.ru_stime
.tv_usec
* 10;
903 user_time
= resource_usage
.ru_utime
.tv_sec
* 1000 * 1000 * 10 + resource_usage
.ru_utime
.tv_usec
* 10;
905 cpu_busy_time
= (user_time
- (prev
? prev
->user_time
: 0)) + (kernel_time
- (prev
? prev
->kernel_time
: 0));
906 cpu_total_time
= (current_time
- (prev
? prev
->current_time
: 0)) * mono_cpu_count ();
909 prev
->kernel_time
= kernel_time
;
910 prev
->user_time
= user_time
;
911 prev
->current_time
= current_time
;
914 if (cpu_total_time
> 0 && cpu_busy_time
> 0)
915 cpu_usage
= (gint32
)(cpu_busy_time
* 100 / cpu_total_time
);
919 #endif /* !HOST_WIN32 */