0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-07-01 00:08:22 +02:00

ircd::ctx: Use terminate() rather than interrupt() during ~context().

This commit is contained in:
Jason Volk 2018-08-19 18:18:15 -07:00
parent ee9343a68f
commit 38c5679b5a

View file

@ -925,7 +925,7 @@ noexcept
// Can't join to bare metal, only from within another context.
if(current)
{
interrupt();
terminate();
join();
return;
}