summaryrefslogtreecommitdiff
path: root/src/gc/gcrecord.h
diff options
context:
space:
mode:
authorSuchiman <robinsue@live.de>2019-06-11 20:18:39 +0200
committerJan Kotas <jkotas@microsoft.com>2019-06-11 20:26:23 -0700
commit7d0bffa8e5cea35b498dedb36393e0620377d03e (patch)
tree2f56b915da19e509cf39936906be13f74e09b80a /src/gc/gcrecord.h
parenta12705bfc76d6f7d7c9f795acffa92a539662b70 (diff)
downloadcoreclr-7d0bffa8e5cea35b498dedb36393e0620377d03e.tar.gz
coreclr-7d0bffa8e5cea35b498dedb36393e0620377d03e.tar.bz2
coreclr-7d0bffa8e5cea35b498dedb36393e0620377d03e.zip
Port typo fixes from CoreRT
Diffstat (limited to 'src/gc/gcrecord.h')
-rw-r--r--src/gc/gcrecord.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gc/gcrecord.h b/src/gc/gcrecord.h
index 30966953e2..c00f8b0826 100644
--- a/src/gc/gcrecord.h
+++ b/src/gc/gcrecord.h
@@ -409,16 +409,16 @@ struct gc_history_global
gc_reason reason;
int pause_mode;
uint32_t mem_pressure;
- uint32_t global_mechanims_p;
+ uint32_t global_mechanisms_p;
void set_mechanism_p (gc_global_mechanism_p mechanism)
{
- global_mechanims_p |= (1 << mechanism);
+ global_mechanisms_p |= (1 << mechanism);
}
BOOL get_mechanism_p (gc_global_mechanism_p mechanism)
{
- return (global_mechanims_p & (1 << mechanism));
+ return (global_mechanisms_p & (1 << mechanism));
}
void print();