[runtime] Updates comments.
authorMarcos Henrich <marcos.henrich@xamarin.com>
Fri, 27 Mar 2015 20:30:37 +0000 (20:30 +0000)
committerMarcos Henrich <marcos.henrich@xamarin.com>
Fri, 27 Mar 2015 20:36:35 +0000 (20:36 +0000)
mono/utils/mono-proclib.c
mono/utils/mono-time.h

index 8f236fb3c77683688c92c8db312434a85f0a40a3..551fca592bc22e09eef833923eb63d626ef2355a 100644 (file)
@@ -320,7 +320,7 @@ mono_process_get_times (gpointer pid, gint64 *start_time, gint64 *user_time, gin
  * /proc/pid/stat format:
  * pid (cmdname) S 
  *     [0] ppid pgid sid tty_nr tty_pgrp flags min_flt cmin_flt maj_flt cmaj_flt
- *     [10] utime stime cutime cstime prio nice threads 0 start_time vsize rss
+ *     [10] utime stime cutime cstime prio nice threads 0 start_time vsize
  *     [20] rss rsslim start_code end_code start_stack esp eip pending blocked sigign
  *     [30] sigcatch wchan 0 0 exit_signal cpu rt_prio policy
  */
index ba38eb708dc935679ec0570785c57ddbe16f5539..e4b83e3e7b0430e3fa2bf6a75a6ad2793ab2a76a 100644 (file)
@@ -10,14 +10,13 @@ guint32 mono_msec_ticks      (void);
 /* Returns the number of 100ns ticks from unspecified time: this should be monotonic */
 gint64  mono_100ns_ticks     (void);
 
-/* Returns the number of 100ns ticks since 1/1/1, UTC timezone */
+/* Returns the number of 100ns ticks since 1/1/1601, UTC timezone */
 gint64  mono_100ns_datetime  (void);
 
 #ifndef HOST_WIN32
 gint64 mono_100ns_datetime_from_timeval (struct timeval tv);
 #endif
 
-
 /* Stopwatch class for internal runtime use */
 typedef struct {
        gint64 start, stop;