Created
October 14, 2018 19:17
-
-
Save batate/aa583ff289ad5ffd1a3e909777778c59 to your computer and use it in GitHub Desktop.
Lies Damned Lies and Statistics1 Gig City Elixir
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* caller must hold instance lock */ | |
static int reset_hardware(...) {...} | |
static_int_in2000_bus_reset(...) { | |
... | |
reset_hardware( … ); | |
... | |
} | |
# solved | |
static int reset_hardware_for_locked_instance(...) {...} | |
static_int_in2000_bus_reset(...) { | |
... | |
reset_hardware( … ); | |
... | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment