1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-07-18 11:31:00 -05:00

Update source file names in comments and docs.

Correcting a source file name in the docs just now reminded me that
I've seen a lot of outdated source file names elsewhere in the code,
due to all the reorganisation since we moved to cmake. Here's a giant
pass of trying to make them all accurate again.
This commit is contained in:
Simon Tatham
2022-01-22 15:38:53 +00:00
parent 81391e3f23
commit 5935c68288
68 changed files with 196 additions and 196 deletions

View File

@ -17,7 +17,7 @@
* thread as blocking system calls and so once one is in progress it
* can't sensibly be interrupted. Hence, after the user tries to
* freeze one of these sockets, it's unavoidable that we may receive
* one more load of data before we manage to get winhandl.c to stop
* one more load of data before we manage to get handle-io.c to stop
* reading.
*/
typedef enum HandleSocketFreezeState {
@ -82,7 +82,7 @@ static size_t handle_gotdata(
if (hs->frozen == FREEZING) {
/*
* If we've received data while this socket is supposed to
* be frozen (because the read winhandl.c started before
* be frozen (because the read handle-io.c started before
* sk_set_frozen was called has now returned) then buffer
* the data for when we unfreeze.
*/
@ -248,7 +248,7 @@ static void sk_handle_set_frozen(Socket *s, bool is_frozen)
case THAWING:
/*
* We were in the middle of emptying our bufchain, and got
* frozen again. In that case, winhandl.c is already
* frozen again. In that case, handle-io.c is already
* throttled, so just return to FROZEN state. The toplevel
* callback will notice and disable itself.
*/