Skip to content

Instantly share code, notes, and snippets.

@batate
Created October 14, 2018 19:17
Show Gist options
  • Save batate/aa583ff289ad5ffd1a3e909777778c59 to your computer and use it in GitHub Desktop.
Save batate/aa583ff289ad5ffd1a3e909777778c59 to your computer and use it in GitHub Desktop.
Lies Damned Lies and Statistics1 Gig City Elixir
/* 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