diff options
author | Vito Caputo <vcaputo@pengaru.com> | 2024-09-29 12:49:12 -0700 |
---|---|---|
committer | Vito Caputo <vcaputo@pengaru.com> | 2024-09-29 12:49:12 -0700 |
commit | 2e437967eaee5ec4359bfada18a5c9bbedacb305 (patch) | |
tree | ec591e7c782e1d3a3a7e5df65df169fddafaa1f9 /src/vcr.c | |
parent | 0090477d85c61c456979aa18ac18ec4ec2260113 (diff) |
vcr: clarify timeout units in naming
vcr_backend_poll() mirrors the poll() api, but let's clarify the
timeout units as microseconds.
Diffstat (limited to 'src/vcr.c')
-rw-r--r-- | src/vcr.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -410,7 +410,7 @@ int vcr_backend_get_dimensions(vcr_backend_t *vbe, int *res_width, int *res_heig /* this is basically just needed by the vmon use case */ /* returns 1 if the backend has events to process, 0 on timeout/error. */ -int vcr_backend_poll(vcr_backend_t *vbe, int timeout) +int vcr_backend_poll(vcr_backend_t *vbe, int timeout_us) { /* FIXME TODO: should probably switch to ppoll() and keep signals blocked outside of * while blocked in ppoll(). Then ppoll() becomes our signal delivery/handling point... @@ -426,11 +426,11 @@ int vcr_backend_poll(vcr_backend_t *vbe, int timeout) if (XPending(vbe->xlib.xserver->display)) return 1; - return poll(&pfd, 1, timeout); + return poll(&pfd, 1, timeout_us); } #endif case VCR_BACKEND_TYPE_MEM: - return poll(NULL, 0, timeout); + return poll(NULL, 0, timeout_us); default: assert(0); |