update release notes
[musl] / src / select / select.c
index 1232271..b38e7fd 100644 (file)
@@ -7,6 +7,7 @@ int select(int n, fd_set *rfds, fd_set *wfds, fd_set *efds, struct timeval *tv)
        int r;
        CANCELPT_BEGIN;
        r = syscall(SYS_select, n, rfds, wfds, efds, tv);
+       CANCELPT_TRY;
        CANCELPT_END;
        return r;
 }