Add lock token to FileDescription, without borrow check

This commit is contained in:
Wildan M
2026-03-09 11:23:51 +07:00
parent 6085c8935c
commit f40b84a5cc
14 changed files with 79 additions and 78 deletions
+1 -1
View File
@@ -57,7 +57,7 @@ impl EventQueue {
};
let (scheme, number) = {
let description = file.description.read();
let description = file.description.read(token.token());
(description.scheme, description.number)
};