Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/Native/gc/gcrecord.h')
-rw-r--r--src/Native/gc/gcrecord.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Native/gc/gcrecord.h b/src/Native/gc/gcrecord.h
index fff1fc5c8..5fa1ef88c 100644
--- a/src/Native/gc/gcrecord.h
+++ b/src/Native/gc/gcrecord.h
@@ -407,16 +407,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();