diff options
author | Přemysl Eric Janouch <p@janouch.name> | 2025-09-21 18:59:16 +0200 |
---|---|---|
committer | Přemysl Eric Janouch <p@janouch.name> | 2025-09-21 18:59:16 +0200 |
commit | 7566f9af827f3eecaddb09f5d11c590bd631d559 (patch) | |
tree | b19f7d8665246d6768509a8cccbbea87fc8b2810 | |
parent | 7425355d015be69434240902a691563dce2be49a (diff) | |
download | liberty-7566f9af827f3eecaddb09f5d11c590bd631d559.tar.gz liberty-7566f9af827f3eecaddb09f5d11c590bd631d559.tar.xz liberty-7566f9af827f3eecaddb09f5d11c590bd631d559.zip |
liberty: comment on pthread_cancelHEADorigin/mastermaster
-rw-r--r-- | liberty.c | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -1209,7 +1209,10 @@ async_make (struct async_manager *manager) } /// Only allowed from the main thread once the job has been started but before -/// the results have been dispatched +/// the results have been dispatched. +/// +/// Note that it may in practice lead to memory leakage, although that's +/// an implementation issue: https://eissing.org/icing/posts/rip_pthread_cancel/ static void async_cancel (struct async *self) { |