[*] Bug fixes
This commit is contained in:
parent
f585d41ba3
commit
5c29787f9c
@ -47,16 +47,24 @@ namespace Aurora::Time
|
|||||||
out.tm_year = year - 1900;
|
out.tm_year = year - 1900;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (wday == 6) // ^1
|
if (wday)
|
||||||
{
|
{
|
||||||
out.tm_wday = 0;
|
auto cur = wday.value();
|
||||||
|
if (cur == 6) // ^1
|
||||||
|
{
|
||||||
|
out.tm_wday = 0;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
out.tm_wday = cur + 1;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
out.tm_wday = wday.value() + 1;
|
out.tm_wday = -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
out.tm_yday = yday.value();
|
out.tm_yday = yday.value_or(-1);
|
||||||
|
|
||||||
if (!isdst.HasValue())
|
if (!isdst.HasValue())
|
||||||
{
|
{
|
||||||
|
@ -574,6 +574,9 @@ namespace Aurora::Threading::Threads
|
|||||||
|
|
||||||
auto pFlag = this->pFlag;
|
auto pFlag = this->pFlag;
|
||||||
|
|
||||||
|
auto pA = this->terminatedSignalLs_;
|
||||||
|
auto pB = this->terminated_;
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
if (auto task = task_)
|
if (auto task = task_)
|
||||||
@ -591,10 +594,18 @@ namespace Aurora::Threading::Threads
|
|||||||
AU_LOCK_GUARD(pFlag->mutex);
|
AU_LOCK_GUARD(pFlag->mutex);
|
||||||
if (pFlag->bLock)
|
if (pFlag->bLock)
|
||||||
{
|
{
|
||||||
this->SignalDeath();
|
if (pA)
|
||||||
|
{
|
||||||
|
pA->Set();
|
||||||
|
}
|
||||||
|
if (pB)
|
||||||
|
{
|
||||||
|
pB->Set();
|
||||||
|
}
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
this->SignalDeath();
|
||||||
Exit(true);
|
Exit(true);
|
||||||
#else
|
#else
|
||||||
#if defined(AURORA_COMPILER_GCC)
|
#if defined(AURORA_COMPILER_GCC)
|
||||||
@ -626,7 +637,14 @@ namespace Aurora::Threading::Threads
|
|||||||
AU_LOCK_GUARD(pFlag->mutex);
|
AU_LOCK_GUARD(pFlag->mutex);
|
||||||
if (pFlag->bLock)
|
if (pFlag->bLock)
|
||||||
{
|
{
|
||||||
this->SignalDeath();
|
if (pA)
|
||||||
|
{
|
||||||
|
pA->Set();
|
||||||
|
}
|
||||||
|
if (pB)
|
||||||
|
{
|
||||||
|
pB->Set();
|
||||||
|
}
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user