SWDEV-1 - Switch PAL to the interface version 872

Change-Id: I71ef232ec7080b36dbffefb201429ab839645ac4
This commit is contained in:
German Andryeyev
2024-05-22 11:02:15 -04:00
committed by Maneesh Gupta
parent adcacec0dd
commit 6c812634e4
3 changed files with 4 additions and 3 deletions
+1 -1
View File
@@ -127,7 +127,7 @@ uint64_t Signal::Wait(uint64_t value, device::Signal::Condition c, uint64_t time
Pal::Result result = Pal::Result::Success;
float timeoutInSec = timeout / (1000 * 1000);
result = event_.Wait(timeoutInSec);
result = event_.Wait(Util::fseconds{timeoutInSec});
if ((result != Pal::Result::Success) && (result != Pal::Result::Timeout)) {
return -1;