Buckets:
| /* | |
| * Copyright 2021 The Emscripten Authors. All rights reserved. | |
| * Emscripten is available under two separate licenses, the MIT license and the | |
| * University of Illinois/NCSA Open Source License. Both these licenses can be | |
| * found in the LICENSE file. | |
| */ | |
| int sigtimedwait(const sigset_t *restrict mask, siginfo_t *restrict si, const struct timespec *restrict timeout) { | |
| for (int sig = 0; sig < _NSIG; sig++) { | |
| if (sigismember(mask, sig) && sigismember(&__sig_pending, sig)) { | |
| if (si) { | |
| siginfo_t t = {.si_signo = sig}; | |
| *si = t; | |
| } | |
| sigdelset(&__sig_pending, sig); | |
| return sig; | |
| } | |
| } | |
| errno = EINVAL; | |
| return -1; | |
| } | |
Xet Storage Details
- Size:
- 784 Bytes
- Xet hash:
- 0609b08f8b2325fdf9961ba8cc2d0edf03b4046f26183553164152fd375e7352
·
Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.