Thread overview
[Issue 20257] Implement waitTimeout() in std.process
Jun 12, 2020
Dlang Bot
Apr 26, 2021
Dlang Bot
Jul 04, 2022
Andrej Mitrovic
June 12, 2020
https://issues.dlang.org/show_bug.cgi?id=20257

--- Comment #1 from Dlang Bot <dlang-bot@dlang.rocks> ---
@MoonlightSentinel created dlang/phobos pull request #7528 "Issue 20257 - Add wait(Pid, Duration) for windows" mentioning this issue:

- Issue 20257 - Add wait(Pid, Duration) for windows

  `wait(Pid, Duration)` allows to wait until the process terminates
  or the timeout expires.

  It's currently windows-only because a decent posix implementation
  is quite difficult and this allows us to sort out the API beforehand.

https://github.com/dlang/phobos/pull/7528

--
April 26, 2021
https://issues.dlang.org/show_bug.cgi?id=20257

--- Comment #2 from Dlang Bot <dlang-bot@dlang.rocks> ---
dlang/phobos pull request #7528 "Issue 20257 - Add wait(Pid, Duration) for windows" was merged into master:

- 0317d1d63b625d69c35060a6108ded418eab8815 by MoonlightSentinel:
  Issue 20257 - Add wait(Pid, Duration) for windows

  `wait(Pid, Duration)` allows to wait until the process terminates
  or the timeout expires.

  It's currently windows-only because a decent posix implementation
  is quite difficult and this allows us to sort out the API beforehand.

https://github.com/dlang/phobos/pull/7528

--
July 04, 2022
https://issues.dlang.org/show_bug.cgi?id=20257

Andrej Mitrovic <andrej.mitrovich@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |FIXED

--- Comment #3 from Andrej Mitrovic <andrej.mitrovich@gmail.com> ---
Marking this as resolved as I originally only requested this for win32. It seems like nobody else is missing it on other platforms.

--