commit | f1fafe8ac76f3c8bf7fdd8dcf7f5cbe414bf3cdf | [log] [tgz] |
---|---|---|
author | Martin Ling <martin-git@earth.li> | Sat Apr 09 10:22:01 2022 +0100 |
committer | Tormod Volden <debian.tormod@gmail.com> | Sat Apr 09 12:34:05 2022 +0200 |
tree | f5fb2ecb093b057a7ae1e021424963d86bf3db6c | |
parent | ff05357a839dd1f65caf736ded2476eaa135fe06 [diff] |
darwin: Document OS-specific behaviour of libusb_cancel_transfer The behaviour of libusb_cancel_transfer is different on Darwin: - Cancellation cancels all transfers on the same endpoint. - A ClearFeature(ENDPOINT_HALT) request is sent after cancellation. This documents both differences and their implications. Fixes #1110 Closes #1121