few more things

This commit is contained in:
Joey Hess 2020-06-05 11:15:29 -04:00
parent db270bd6ba
commit 42756b972e
No known key found for this signature in database
GPG key ID: DB12DB0FF05F8F38

View file

@ -7,4 +7,11 @@ Also, anything that catches SomeException could catch an async exception
that was intended to interrupt the thread. Probably need to make a specific that was intended to interrupt the thread. Probably need to make a specific
exception for thread interrupts, and make everything that catches exception for thread interrupts, and make everything that catches
SomeException mask out that exception. SomeException mask out that exception.
And, there may be data structures that get filled with a value and need to
be emptied again on an async exception. Things like the lock pool. Need
to somehow audit for those.
And for that matter, should audit for any code that opens file handles w/o
bracketing, because I'm not really positive it's all bracketed.
"""]] """]]