Change kill to cancel
Some checks failed
build / Build distributions (push) Successful in 7s
build / deploy (push) Has been skipped
build / Build distributions (release) Successful in 7s
build / deploy (release) Successful in 7s
Regression Tests / Python 3.10 (push) Has been cancelled
Regression Tests / Python 3.11 (push) Has been cancelled
Regression Tests / Python 3.12 (push) Has been cancelled
Regression Tests / Python 3.13 (push) Has been cancelled
Regression Tests / Python 3.8 (push) Has been cancelled
Regression Tests / Python 3.9 (push) Has been cancelled

This commit is contained in:
2026-02-08 13:51:40 -08:00
parent 9f8d271384
commit 80b4095d73
8 changed files with 21 additions and 21 deletions

View File

@@ -99,7 +99,7 @@ class AxiSlaveWrite(Reset):
if state:
self.log.info("Reset asserted")
if self._process_write_cr is not None:
self._process_write_cr.kill()
self._process_write_cr.cancel()
self._process_write_cr = None
self.aw_channel.clear()
@@ -263,7 +263,7 @@ class AxiSlaveRead(Reset):
if state:
self.log.info("Reset asserted")
if self._process_read_cr is not None:
self._process_read_cr.kill()
self._process_read_cr.cancel()
self._process_read_cr = None
self.ar_channel.clear()