Skip to content

Commit

Permalink
code review feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
lambdageek authored and github-actions committed Oct 25, 2023
1 parent 9e9ecff commit 99b4d75
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/mono/mono/metadata/object.c
Original file line number Diff line number Diff line change
Expand Up @@ -648,9 +648,9 @@ mono_runtime_class_init_full (MonoVTable *vtable, MonoError *error)
mono_type_initialization_unlock ();
goto retry_top;
} else if (wait_result == 0) {
/* success.. we were signaled that the other thread is done. Proceed */
/* Success: we were signaled that the other thread is done. Proceed */
} else {
g_error ("unexpected return value %d from mono_coop_cond_timedwait", wait_result);
g_assert_not_reached ();
}
}
mono_type_init_unlock (lock);
Expand Down

0 comments on commit 99b4d75

Please sign in to comment.