Files
rust/library/std/src
Dylan DPC 4cbc003577 Rollup merge of #95467 - ChrisDenton:async-read-pipe, r=joshtriplett
Windows: Synchronize asynchronous pipe reads and writes

On Windows, the pipes used for spawned processes are opened for asynchronous access but `read` and `write` are done using the standard methods that assume synchronous access. This means that the buffer (and variables on the stack) may be read/written to after the function returns.

This PR ensures reads/writes complete before returning. Note that this only applies to pipes we create and does not affect the standard file read/write methods.

Fixes #95411
2022-04-04 20:41:33 +02:00
..
2021-10-25 22:44:41 -05:00
2022-03-18 15:46:49 -07:00
2022-03-20 15:56:25 -07:00
2022-01-28 15:01:07 +01:00
2022-03-30 11:23:58 +02:00
2022-03-30 11:23:58 +02:00
2022-04-04 18:57:49 +09:00