mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-10 08:51:28 +12:00
Misc thread started/ended/aborted aligment
This commit is contained in:
parent
12f217aba9
commit
c3960b7f43
5 changed files with 33 additions and 33 deletions
|
@ -47,7 +47,7 @@ u32 dmuxOpen(Demuxer* data)
|
|||
|
||||
thread t("Demuxer[" + std::to_string(dmux_id) + "] Thread", [&]()
|
||||
{
|
||||
ConLog.Write("Demuxer enter (mem=0x%x, size=0x%x, cb=0x%x, arg=0x%x)", dmux.memAddr, dmux.memSize, dmux.cbFunc, dmux.cbArg);
|
||||
ConLog.Write("Demuxer thread started (mem=0x%x, size=0x%x, cb=0x%x, arg=0x%x)", dmux.memAddr, dmux.memSize, dmux.cbFunc, dmux.cbArg);
|
||||
|
||||
DemuxerTask task;
|
||||
DemuxerStream stream;
|
||||
|
@ -357,7 +357,7 @@ u32 dmuxOpen(Demuxer* data)
|
|||
case dmuxClose:
|
||||
{
|
||||
dmux.is_finished = true;
|
||||
ConLog.Write("Demuxer exit");
|
||||
ConLog.Write("Demuxer thread ended");
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -450,11 +450,11 @@ u32 dmuxOpen(Demuxer* data)
|
|||
break;
|
||||
|
||||
default:
|
||||
ConLog.Error("Demuxer error: unknown task(%d)", task.type);
|
||||
ConLog.Error("Demuxer thread error: unknown task(%d)", task.type);
|
||||
return;
|
||||
}
|
||||
}
|
||||
ConLog.Warning("Demuxer aborted");
|
||||
ConLog.Warning("Demuxer thread aborted");
|
||||
});
|
||||
|
||||
t.detach();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue