[runtime] Fixed the iOS build.
[mono.git] / mono / utils / mono-proclib.c
1 /*
2  * Copyright 2008-2011 Novell Inc
3  * Copyright 2011 Xamarin Inc
4  */
5
6 #include "config.h"
7 #include "utils/mono-proclib.h"
8
9 #include <stdlib.h>
10 #include <stdio.h>
11 #include <string.h>
12 #include <fcntl.h>
13 #ifdef HAVE_UNISTD_H
14 #include <unistd.h>
15 #endif
16
17 #ifdef HOST_WIN32
18 #include <windows.h>
19 #include <process.h>
20 #endif
21
22 #if defined(__APPLE__) || defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__NetBSD__)
23 #include <sys/errno.h>
24 #include <sys/param.h>
25 #include <sys/types.h>
26 #include <sys/sysctl.h>
27 #include <sys/proc.h>
28 #if defined(__APPLE__)
29 #include <mach/mach.h>
30 #endif
31 #ifdef HAVE_SYS_USER_H
32 #include <sys/user.h>
33 #endif
34 #ifdef HAVE_STRUCT_KINFO_PROC_KP_PROC
35 #    define kinfo_pid_member kp_proc.p_pid
36 #    define kinfo_name_member kp_proc.p_comm
37 #elif defined(__OpenBSD__)
38 #    define kinfo_pid_member p_pid
39 #    define kinfo_name_member p_comm
40 #else
41 #define kinfo_pid_member ki_pid
42 #define kinfo_name_member ki_comm
43 #endif
44 #define USE_SYSCTL 1
45 #endif
46
47 /**
48  * mono_process_list:
49  * @size: a pointer to a location where the size of the returned array is stored
50  *
51  * Return an array of pid values for the processes currently running on the system.
52  * The size of the array is stored in @size.
53  */
54 gpointer*
55 mono_process_list (int *size)
56 {
57 #if USE_SYSCTL
58         int res, i;
59 #ifdef KERN_PROC2
60         int mib [6];
61         size_t data_len = sizeof (struct kinfo_proc2) * 400;
62         struct kinfo_proc2 *processes = malloc (data_len);
63 #else
64         int mib [4];
65         size_t data_len = sizeof (struct kinfo_proc) * 16;
66         struct kinfo_proc *processes;
67         int limit = 8;
68 #endif /* KERN_PROC2 */
69         void **buf = NULL;
70
71         if (size)
72                 *size = 0;
73
74 #ifdef KERN_PROC2
75         if (!processes)
76                 return NULL;
77
78         mib [0] = CTL_KERN;
79         mib [1] = KERN_PROC2;
80         mib [2] = KERN_PROC_ALL;
81         mib [3] = 0;
82         mib [4] = sizeof(struct kinfo_proc2);
83         mib [5] = 400; /* XXX */
84
85         res = sysctl (mib, 6, processes, &data_len, NULL, 0);
86         if (res < 0) {
87                 free (processes);
88                 return NULL;
89         }
90 #else
91         processes = NULL;
92         while (limit) {
93                 mib [0] = CTL_KERN;
94                 mib [1] = KERN_PROC;
95                 mib [2] = KERN_PROC_ALL;
96                 mib [3] = 0;
97
98                 res = sysctl (mib, 4, NULL, &data_len, NULL, 0);
99                 if (res)
100                         return NULL;
101                 processes = malloc (data_len);
102                 res = sysctl (mib, 4, NULL, &data_len, NULL, 0);
103                 if (res < 0) {
104                         free (processes);
105                         if (errno != ENOMEM)
106                                 return NULL;
107                         limit --;
108                 } else {
109                         break;
110                 }
111         }
112 #endif /* KERN_PROC2 */
113
114 #ifdef KERN_PROC2
115         res = data_len/sizeof (struct kinfo_proc2);
116 #else
117         res = data_len/sizeof (struct kinfo_proc);
118 #endif /* KERN_PROC2 */
119         buf = g_realloc (buf, res * sizeof (void*));
120         for (i = 0; i < res; ++i)
121                 buf [i] = GINT_TO_POINTER (processes [i].kinfo_pid_member);
122         free (processes);
123         if (size)
124                 *size = res;
125         return buf;
126 #elif defined(__HAIKU__)
127         /* FIXME: Add back the code from 9185fcc305e43428d0f40f3ee37c8a405d41c9ae */
128         g_assert_not_reached ();
129         return NULL;
130 #else
131         const char *name;
132         void **buf = NULL;
133         int count = 0;
134         int i = 0;
135         GDir *dir = g_dir_open ("/proc/", 0, NULL);
136         if (!dir) {
137                 if (size)
138                         *size = 0;
139                 return NULL;
140         }
141         while ((name = g_dir_read_name (dir))) {
142                 int pid;
143                 char *nend;
144                 pid = strtol (name, &nend, 10);
145                 if (pid <= 0 || nend == name || *nend)
146                         continue;
147                 if (i >= count) {
148                         if (!count)
149                                 count = 16;
150                         else
151                                 count *= 2;
152                         buf = g_realloc (buf, count * sizeof (void*));
153                 }
154                 buf [i++] = GINT_TO_POINTER (pid);
155         }
156         g_dir_close (dir);
157         if (size)
158                 *size = i;
159         return buf;
160 #endif
161 }
162
163 static G_GNUC_UNUSED char*
164 get_pid_status_item_buf (int pid, const char *item, char *rbuf, int blen, MonoProcessError *error)
165 {
166         char buf [256];
167         char *s;
168         FILE *f;
169         int len = strlen (item);
170
171         g_snprintf (buf, sizeof (buf), "/proc/%d/status", pid);
172         f = fopen (buf, "r");
173         if (!f) {
174                 if (error)
175                         *error = MONO_PROCESS_ERROR_NOT_FOUND;
176                 return NULL;
177         }
178         while ((s = fgets (buf, blen, f))) {
179                 if (*item != *buf)
180                         continue;
181                 if (strncmp (buf, item, len))
182                         continue;
183                 s = buf + len;
184                 while (g_ascii_isspace (*s)) s++;
185                 if (*s++ != ':')
186                         continue;
187                 while (g_ascii_isspace (*s)) s++;
188                 fclose (f);
189                 len = strlen (s);
190                 strncpy (rbuf, s, MIN (len, blen));
191                 rbuf [MIN (len, blen) - 1] = 0;
192                 if (error)
193                         *error = MONO_PROCESS_ERROR_NONE;
194                 return rbuf;
195         }
196         fclose (f);
197         if (error)
198                 *error = MONO_PROCESS_ERROR_OTHER;
199         return NULL;
200 }
201
202 /**
203  * mono_process_get_name:
204  * @pid: pid of the process
205  * @buf: byte buffer where to store the name of the prcoess
206  * @len: size of the buffer @buf
207  *
208  * Return the name of the process identified by @pid, storing it
209  * inside @buf for a maximum of len bytes (including the terminating 0).
210  */
211 char*
212 mono_process_get_name (gpointer pid, char *buf, int len)
213 {
214 #if USE_SYSCTL
215         int res;
216 #ifdef KERN_PROC2
217         int mib [6];
218         size_t data_len = sizeof (struct kinfo_proc2);
219         struct kinfo_proc2 processi;
220 #else
221         int mib [4];
222         size_t data_len = sizeof (struct kinfo_proc);
223         struct kinfo_proc processi;
224 #endif /* KERN_PROC2 */
225
226         memset (buf, 0, len);
227
228 #ifdef KERN_PROC2
229         mib [0] = CTL_KERN;
230         mib [1] = KERN_PROC2;
231         mib [2] = KERN_PROC_PID;
232         mib [3] = GPOINTER_TO_UINT (pid);
233         mib [4] = sizeof(struct kinfo_proc2);
234         mib [5] = 400; /* XXX */
235
236         res = sysctl (mib, 6, &processi, &data_len, NULL, 0);
237
238         if (res < 0 || data_len != sizeof (struct kinfo_proc2)) {
239                 return buf;
240         }
241 #else
242         mib [0] = CTL_KERN;
243         mib [1] = KERN_PROC;
244         mib [2] = KERN_PROC_PID;
245         mib [3] = GPOINTER_TO_UINT (pid);
246         
247         res = sysctl (mib, 4, &processi, &data_len, NULL, 0);
248         if (res < 0 || data_len != sizeof (struct kinfo_proc)) {
249                 return buf;
250         }
251 #endif /* KERN_PROC2 */
252         strncpy (buf, processi.kinfo_name_member, len - 1);
253         return buf;
254 #else
255         char fname [128];
256         FILE *file;
257         char *p;
258         int r;
259         sprintf (fname, "/proc/%d/cmdline", GPOINTER_TO_INT (pid));
260         buf [0] = 0;
261         file = fopen (fname, "r");
262         if (!file)
263                 return buf;
264         r = fread (buf, 1, len - 1, file);
265         fclose (file);
266         buf [r] = 0;
267         p = strrchr (buf, '/');
268         if (p)
269                 return p + 1;
270         if (r == 0) {
271                 return get_pid_status_item_buf (GPOINTER_TO_INT (pid), "Name", buf, len, NULL);
272         }
273         return buf;
274 #endif
275 }
276
277 /*
278  * /proc/pid/stat format:
279  * pid (cmdname) S 
280  *      [0] ppid pgid sid tty_nr tty_pgrp flags min_flt cmin_flt maj_flt cmaj_flt
281  *      [10] utime stime cutime cstime prio nice threads 0 start_time vsize rss
282  *      [20] rss rsslim start_code end_code start_stack esp eip pending blocked sigign
283  *      [30] sigcatch wchan 0 0 exit_signal cpu rt_prio policy
284  */
285
286 #define RET_ERROR(err) do {     \
287                 if (error) *error = (err);      \
288                 return 0;                       \
289         } while (0)
290
291 static gint64
292 get_process_stat_item (int pid, int pos, int sum, MonoProcessError *error)
293 {
294 #if defined(__APPLE__) 
295         double process_user_time = 0, process_system_time = 0;//, process_percent = 0;
296         task_t task;
297         struct task_basic_info t_info;
298         mach_msg_type_number_t t_info_count = TASK_BASIC_INFO_COUNT, th_count;
299         thread_array_t th_array;
300         size_t i;
301
302         if (task_for_pid(mach_task_self(), pid, &task) != KERN_SUCCESS)
303                 RET_ERROR (MONO_PROCESS_ERROR_NOT_FOUND);
304
305         if (task_info(task, TASK_BASIC_INFO, (task_info_t)&t_info, &t_info_count) != KERN_SUCCESS) {
306                 mach_port_deallocate (mach_task_self (), task);
307                 RET_ERROR (MONO_PROCESS_ERROR_OTHER);
308         }
309         
310         if (task_threads(task, &th_array, &th_count) != KERN_SUCCESS) {
311                 mach_port_deallocate (mach_task_self (), task);
312                 RET_ERROR (MONO_PROCESS_ERROR_OTHER);
313         }
314                 
315         for (i = 0; i < th_count; i++) {
316                 double thread_user_time, thread_system_time;//, thread_percent;
317                 
318                 struct thread_basic_info th_info;
319                 mach_msg_type_number_t th_info_count = THREAD_BASIC_INFO_COUNT;
320                 if (thread_info(th_array[i], THREAD_BASIC_INFO, (thread_info_t)&th_info, &th_info_count) == KERN_SUCCESS) {
321                         thread_user_time = th_info.user_time.seconds + th_info.user_time.microseconds / 1e6;
322                         thread_system_time = th_info.system_time.seconds + th_info.system_time.microseconds / 1e6;
323                         //thread_percent = (double)th_info.cpu_usage / TH_USAGE_SCALE;
324                         
325                         process_user_time += thread_user_time;
326                         process_system_time += thread_system_time;
327                         //process_percent += th_percent;
328                 }
329         }
330         
331         for (i = 0; i < th_count; i++)
332                 mach_port_deallocate(task, th_array[i]);
333
334         mach_port_deallocate (mach_task_self (), task);
335
336         process_user_time += t_info.user_time.seconds + t_info.user_time.microseconds / 1e6;
337         process_system_time += t_info.system_time.seconds + t_info.system_time.microseconds / 1e6;
338     
339         if (pos == 10 && sum == TRUE)
340                 return (gint64)((process_user_time + process_system_time) * 10000000);
341         else if (pos == 10)
342                 return (gint64)(process_user_time * 10000000);
343         else if (pos == 11)
344                 return (gint64)(process_system_time * 10000000);
345                 
346         return 0;
347 #else
348         char buf [512];
349         char *s, *end;
350         FILE *f;
351         int len, i;
352         gint64 value;
353
354         g_snprintf (buf, sizeof (buf), "/proc/%d/stat", pid);
355         f = fopen (buf, "r");
356         if (!f)
357                 RET_ERROR (MONO_PROCESS_ERROR_NOT_FOUND);
358         len = fread (buf, 1, sizeof (buf), f);
359         fclose (f);
360         if (len <= 0)
361                 RET_ERROR (MONO_PROCESS_ERROR_OTHER);
362         s = strchr (buf, ')');
363         if (!s)
364                 RET_ERROR (MONO_PROCESS_ERROR_OTHER);
365         s++;
366         while (g_ascii_isspace (*s)) s++;
367         if (!*s)
368                 RET_ERROR (MONO_PROCESS_ERROR_OTHER);
369         /* skip the status char */
370         while (*s && !g_ascii_isspace (*s)) s++;
371         if (!*s)
372                 RET_ERROR (MONO_PROCESS_ERROR_OTHER);
373         for (i = 0; i < pos; ++i) {
374                 while (g_ascii_isspace (*s)) s++;
375                 if (!*s)
376                         RET_ERROR (MONO_PROCESS_ERROR_OTHER);
377                 while (*s && !g_ascii_isspace (*s)) s++;
378                 if (!*s)
379                         RET_ERROR (MONO_PROCESS_ERROR_OTHER);
380         }
381         /* we are finally at the needed item */
382         value = strtoul (s, &end, 0);
383         /* add also the following value */
384         if (sum) {
385                 while (g_ascii_isspace (*s)) s++;
386                 if (!*s)
387                         RET_ERROR (MONO_PROCESS_ERROR_OTHER);
388                 value += strtoul (s, &end, 0);
389         }
390         if (error)
391                 *error = MONO_PROCESS_ERROR_NONE;
392         return value;
393 #endif
394 }
395
396 static int
397 get_user_hz (void)
398 {
399         static int user_hz = 0;
400         if (user_hz == 0) {
401 #ifdef _SC_CLK_TCK
402                 user_hz = sysconf (_SC_CLK_TCK);
403 #endif
404                 if (user_hz == 0)
405                         user_hz = 100;
406         }
407         return user_hz;
408 }
409
410 static gint64
411 get_process_stat_time (int pid, int pos, int sum, MonoProcessError *error)
412 {
413         gint64 val = get_process_stat_item (pid, pos, sum, error);
414 #if defined(__APPLE__)
415         return val;
416 #else
417         /* return 100ns ticks */
418         return (val * 10000000) / get_user_hz ();
419 #endif
420 }
421
422 static gint64
423 get_pid_status_item (int pid, const char *item, MonoProcessError *error, int multiplier)
424 {
425 #if defined(__APPLE__)
426         // ignore the multiplier
427         
428         gint64 ret;
429         task_t task;
430         struct task_basic_info t_info;
431         mach_msg_type_number_t th_count = TASK_BASIC_INFO_COUNT;
432
433         if (pid == getpid ()) {
434                 /* task_for_pid () doesn't work on ios, even for the current process */
435                 task = mach_task_self ();
436         } else {
437                 if (task_for_pid (mach_task_self (), pid, &task) != KERN_SUCCESS)
438                         RET_ERROR (MONO_PROCESS_ERROR_NOT_FOUND);
439         }
440         
441         if (task_info (task, TASK_BASIC_INFO, (task_info_t)&t_info, &th_count) != KERN_SUCCESS) {
442                 if (pid != getpid ())
443                         mach_port_deallocate (mach_task_self (), task);
444                 RET_ERROR (MONO_PROCESS_ERROR_OTHER);
445         }
446
447         if (strcmp (item, "VmRSS") == 0 || strcmp (item, "VmHWM") == 0 || strcmp (item, "VmData") == 0)
448                 ret = t_info.resident_size;
449         else if (strcmp (item, "VmSize") == 0 || strcmp (item, "VmPeak") == 0)
450                 ret = t_info.virtual_size;
451         else if (strcmp (item, "Threads") == 0)
452                 ret = th_count;
453         else
454                 ret = 0;
455
456         if (pid != getpid ())
457                 mach_port_deallocate (mach_task_self (), task);
458         
459         return ret;
460 #else
461         char buf [64];
462         char *s;
463
464         s = get_pid_status_item_buf (pid, item, buf, sizeof (buf), error);
465         if (s)
466                 return ((gint64) atol (s)) * multiplier;
467         return 0;
468 #endif
469 }
470
471 /**
472  * mono_process_get_data:
473  * @pid: pid of the process
474  * @data: description of data to return
475  *
476  * Return a data item of a process like user time, memory use etc,
477  * according to the @data argumet.
478  */
479 gint64
480 mono_process_get_data_with_error (gpointer pid, MonoProcessData data, MonoProcessError *error)
481 {
482         gint64 val;
483         int rpid = GPOINTER_TO_INT (pid);
484
485         if (error)
486                 *error = MONO_PROCESS_ERROR_OTHER;
487
488         switch (data) {
489         case MONO_PROCESS_NUM_THREADS:
490                 return get_pid_status_item (rpid, "Threads", error, 1);
491         case MONO_PROCESS_USER_TIME:
492                 return get_process_stat_time (rpid, 10, FALSE, error);
493         case MONO_PROCESS_SYSTEM_TIME:
494                 return get_process_stat_time (rpid, 11, FALSE, error);
495         case MONO_PROCESS_TOTAL_TIME:
496                 return get_process_stat_time (rpid, 10, TRUE, error);
497         case MONO_PROCESS_WORKING_SET:
498                 return get_pid_status_item (rpid, "VmRSS", error, 1024);
499         case MONO_PROCESS_WORKING_SET_PEAK:
500                 val = get_pid_status_item (rpid, "VmHWM", error, 1024);
501                 if (val == 0)
502                         val = get_pid_status_item (rpid, "VmRSS", error, 1024);
503                 return val;
504         case MONO_PROCESS_PRIVATE_BYTES:
505                 return get_pid_status_item (rpid, "VmData", error, 1024);
506         case MONO_PROCESS_VIRTUAL_BYTES:
507                 return get_pid_status_item (rpid, "VmSize", error, 1024);
508         case MONO_PROCESS_VIRTUAL_BYTES_PEAK:
509                 val = get_pid_status_item (rpid, "VmPeak", error, 1024);
510                 if (val == 0)
511                         val = get_pid_status_item (rpid, "VmSize", error, 1024);
512                 return val;
513         case MONO_PROCESS_FAULTS:
514                 return get_process_stat_item (rpid, 6, TRUE, error);
515         case MONO_PROCESS_ELAPSED:
516                 return get_process_stat_item (rpid, 18, FALSE, error) / get_user_hz ();
517         case MONO_PROCESS_PPID:
518                 return get_process_stat_time (rpid, 0, FALSE, error);
519         case MONO_PROCESS_PAGED_BYTES:
520                 return get_pid_status_item (rpid, "VmSwap", error, 1024);
521
522                 /* Nothing yet */
523         case MONO_PROCESS_END:
524                 return 0;
525         }
526         return 0;
527 }
528
529 gint64
530 mono_process_get_data (gpointer pid, MonoProcessData data)
531 {
532         MonoProcessError error;
533         return mono_process_get_data_with_error (pid, data, &error);
534 }
535
536 int
537 mono_process_current_pid ()
538 {
539 #if defined(HAVE_UNISTD_H)
540         return (int) getpid ();
541 #elif defined(HOST_WIN32)
542         return (int) GetCurrentProcessId ();
543 #else
544 #error getpid
545 #endif
546 }
547
548 /**
549  * mono_cpu_count:
550  *
551  * Return the number of processors on the system.
552  */
553 int
554 mono_cpu_count (void)
555 {
556         int count = 0;
557 #ifdef PLATFORM_ANDROID
558         /* Android tries really hard to save power by powering off CPUs on SMP phones which
559          * means the normal way to query cpu count returns a wrong value with userspace API.
560          * Instead we use /sys entries to query the actual hardware CPU count.
561          */
562         char buffer[8] = {'\0'};
563         int present = open ("/sys/devices/system/cpu/present", O_RDONLY);
564         /* Format of the /sys entry is a cpulist of indexes which in the case
565          * of present is always of the form "0-(n-1)" when there is more than
566          * 1 core, n being the number of CPU cores in the system. Otherwise
567          * the value is simply 0
568          */
569         if (present != -1 && read (present, (char*)buffer, sizeof (buffer)) > 3)
570                 count = strtol (((char*)buffer) + 2, NULL, 10);
571         if (present != -1)
572                 close (present);
573         if (count > 0)
574                 return count + 1;
575 #endif
576 #ifdef _SC_NPROCESSORS_ONLN
577         count = sysconf (_SC_NPROCESSORS_ONLN);
578         if (count > 0)
579                 return count;
580 #endif
581 #ifdef USE_SYSCTL
582         {
583                 int mib [2];
584                 size_t len = sizeof (int);
585                 mib [0] = CTL_HW;
586                 mib [1] = HW_NCPU;
587                 if (sysctl (mib, 2, &count, &len, NULL, 0) == 0)
588                         return count;
589         }
590 #endif
591 #ifdef HOST_WIN32
592         {
593                 SYSTEM_INFO info;
594                 GetSystemInfo (&info);
595                 return info.dwNumberOfProcessors;
596         }
597 #endif
598         /* FIXME: warn */
599         return 1;
600 }
601
602 static void
603 get_cpu_times (int cpu_id, gint64 *user, gint64 *systemt, gint64 *irq, gint64 *sirq, gint64 *idle)
604 {
605         char buf [256];
606         char *s;
607         int hz = get_user_hz ();
608         guint64 user_ticks = 0, nice_ticks = 0, system_ticks = 0, idle_ticks = 0, irq_ticks = 0, sirq_ticks = 0;
609         FILE *f = fopen ("/proc/stat", "r");
610         if (!f)
611                 return;
612         if (cpu_id < 0)
613                 hz *= mono_cpu_count ();
614         while ((s = fgets (buf, sizeof (buf), f))) {
615                 char *data = NULL;
616                 if (cpu_id < 0 && strncmp (s, "cpu", 3) == 0 && g_ascii_isspace (s [3])) {
617                         data = s + 4;
618                 } else if (cpu_id >= 0 && strncmp (s, "cpu", 3) == 0 && strtol (s + 3, &data, 10) == cpu_id) {
619                         if (data == s + 3)
620                                 continue;
621                         data++;
622                 } else {
623                         continue;
624                 }
625                 
626                 user_ticks = strtoull (data, &data, 10);
627                 nice_ticks = strtoull (data, &data, 10);
628                 system_ticks = strtoull (data, &data, 10);
629                 idle_ticks = strtoull (data, &data, 10);
630                 /* iowait_ticks = strtoull (data, &data, 10); */
631                 irq_ticks = strtoull (data, &data, 10);
632                 sirq_ticks = strtoull (data, &data, 10);
633                 break;
634         }
635         fclose (f);
636
637         if (user)
638                 *user = (user_ticks + nice_ticks) * 10000000 / hz;
639         if (systemt)
640                 *systemt = (system_ticks) * 10000000 / hz;
641         if (irq)
642                 *irq = (irq_ticks) * 10000000 / hz;
643         if (sirq)
644                 *sirq = (sirq_ticks) * 10000000 / hz;
645         if (idle)
646                 *idle = (idle_ticks) * 10000000 / hz;
647 }
648
649 /**
650  * mono_cpu_get_data:
651  * @cpu_id: processor number or -1 to get a summary of all the processors
652  * @data: type of data to retrieve
653  *
654  * Get data about a processor on the system, like time spent in user space or idle time.
655  */
656 gint64
657 mono_cpu_get_data (int cpu_id, MonoCpuData data, MonoProcessError *error)
658 {
659         gint64 value = 0;
660
661         if (error)
662                 *error = MONO_PROCESS_ERROR_NONE;
663         switch (data) {
664         case MONO_CPU_USER_TIME:
665                 get_cpu_times (cpu_id, &value, NULL, NULL, NULL, NULL);
666                 break;
667         case MONO_CPU_PRIV_TIME:
668                 get_cpu_times (cpu_id, NULL, &value, NULL, NULL, NULL);
669                 break;
670         case MONO_CPU_INTR_TIME:
671                 get_cpu_times (cpu_id, NULL, NULL, &value, NULL, NULL);
672                 break;
673         case MONO_CPU_DCP_TIME:
674                 get_cpu_times (cpu_id, NULL, NULL, NULL, &value, NULL);
675                 break;
676         case MONO_CPU_IDLE_TIME:
677                 get_cpu_times (cpu_id, NULL, NULL, NULL, NULL, &value);
678                 break;
679
680         case MONO_CPU_END:
681                 /* Nothing yet */
682                 return 0;
683         }
684         return value;
685 }
686
687 int
688 mono_atexit (void (*func)(void))
689 {
690 #ifdef PLATFORM_ANDROID
691         /* Some versions of android libc doesn't define atexit () */
692         return 0;
693 #else
694         return atexit (func);
695 #endif
696 }