Skip to content

Commit

Permalink
* MDF log content modified
Browse files Browse the repository at this point in the history
  • Loading branch information
alvin1221 committed Dec 15, 2021
1 parent 0ae95da commit f1834c3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/core/aio.c
Original file line number Diff line number Diff line change
Expand Up @@ -462,21 +462,21 @@ nni_aio_finish_impl(
void
nni_aio_finish(nni_aio *aio, int result, size_t count)
{
debug_msg("aio finish");
debug_msg("%s(%d)", nng_strerror(result),result);
nni_aio_finish_impl(aio, result, count, NULL, false);
}

void
nni_aio_finish_sync(nni_aio *aio, int result, size_t count)
{
debug_msg("nni_aio_finish_sync");
debug_msg("%s(%d)", nng_strerror(result),result);
nni_aio_finish_impl(aio, result, count, NULL, true);
}

void
nni_aio_finish_error(nni_aio *aio, int result)
{
debug_msg("nni_aio_finish_error");
debug_msg("%s(%d)", nng_strerror(result),result);
nni_aio_finish_impl(aio, result, 0, NULL, false);
}

Expand Down

0 comments on commit f1834c3

Please sign in to comment.