0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-06-23 12:28:20 +02:00

ircd::fs::aio: Use defer to post the chaser.

This commit is contained in:
Jason Volk 2019-04-12 17:32:53 -07:00
parent 58c5ac7855
commit 726f131cc2

View file

@ -723,7 +723,7 @@ ircd::fs::aio::system::submit(request &request)
};
auto handler(std::bind(&system::chase, this));
ircd::post(descriptor, std::move(handler));
ircd::defer(descriptor, std::move(handler));
}
}