- Timestamp:
- Jun 14, 2021 12:57:15 PM (3 years ago)
- File:
-
- 1 edited
-
trunk/src/VBox/Runtime/r3/posix/timer-posix.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/posix/timer-posix.cpp
r82968 r89678 664 664 * Suspend the timer if it's running. 665 665 */ 666 if ( pTimer->fSuspended)666 if (!pTimer->fSuspended) 667 667 { 668 668 struct itimerspec TimerSpec; … … 813 813 TimerSpec.it_value.tv_sec = 0; 814 814 TimerSpec.it_value.tv_nsec = 0; 815 TimerSpec.it_interval.tv_sec = 0; 816 TimerSpec.it_interval.tv_nsec = 0; 815 817 int err = timer_settime(pTimer->NativeTimer, 0, &TimerSpec, NULL); 816 818 int rc = err == 0 ? VINF_SUCCESS : RTErrConvertFromErrno(errno);
Note:
See TracChangeset
for help on using the changeset viewer.

