White space issues, typos.
authorNathan Ricci <naricc@microsoft.com>
Wed, 11 Sep 2019 18:28:16 +0000 (14:28 -0400)
committerNathan Ricci <naricc@microsoft.com>
Wed, 11 Sep 2019 18:28:16 +0000 (14:28 -0400)
Commit migrated from https://github.com/mono/mono/commit/b88d67d5641df6d60233fa582c67f31c97de3a45

src/mono/mono/metadata/sgen-mono.c
src/mono/mono/sgen/sgen-alloc.c

index c9c57af..f2e7a47 100644 (file)
@@ -2055,7 +2055,7 @@ sgen_client_thread_detach_with_lock (SgenThreadInfo *p)
 
        mono_tls_set_sgen_thread_info (NULL);
 
-       increment_bytes_allocated_detached(p->total_bytes_allocated);
+       increment_bytes_allocated_detached (p->total_bytes_allocated);
 
        tid = mono_thread_info_get_tid (p);
 
index e096dee..b45110f 100644 (file)
@@ -47,11 +47,11 @@ static guint64 stat_bytes_alloced = 0;
 static guint64 stat_bytes_alloced_los = 0;
 #endif
 
-/* The total number of bytes allocated so far in program exection by all attached threads.
+/* The total number of bytes allocated so far in program execution by all attached threads.
  * This is not constantly syncrhonized, but only updated on each GC. */
 static guint64 bytes_allocated_attached = 0;
 
-/* Total bytes allocated so far in program exevution by detached threads */ 
+/* Total bytes allocated so far in program execution by detached threads */ 
 static guint64 bytes_allocated_detached = 0;
 
 /*