Yuyi Wang
Yuyi Wang
Before ROCm 6.0, `hipPointerGetAttributes` returns error on unregistered pointers. Ref: * https://github.com/ROCm/HIP/issues/3057 * https://github.com/ROCm/clr/blob/rocm-6.0.0/CHANGELOG.md#known-issues-1
我在用 Windows,通过 Auto Dark Mode 自动切换浅色和暗色模式。希望播放器也能在不同模式下使用不同的主题。
This is an implementation for a raw buffer ring that doesn't own the buffers, based on liburing impl. It will be convenient for developers to implement their own safe buffer...
The original `iocp` backend is moved to `iocp/wepoll`. Although I would like to reuse the code, it seems that only `dur2timeout` is reused. Closes #208 Closes #141 Some comments: *...
ProcessSocketNotifications is a new Windows API after 21H1. It performs much like epoll and kqueue, and provides edge trigger. I would like to implememt it, together with #141. I think...
The calling to `std::thread::current()` clones an Arc. It is a bit heavy in a most likely single-threaded case. This PR caches the current thread id in a TLS. It should...
## Description This PR adds support for Cygwin & MSYS2. * Cygwin `wchar_t` is UTF-16. * `wcwidth` is replaced by `unicode-width`. * `wcrtomb` and `mbrtowc` are replaced by `c32rtomb` and...
# Description Some methods required by `nix` crate. # Sources * https://github.com/cygwin/cygwin/blob/a3863bfeb73f3c3832038685498c7c4148a06890/winsup/cygwin/include/pty.h#L11-L14 * https://github.com/cygwin/cygwin/blob/a3863bfeb73f3c3832038685498c7c4148a06890/winsup/cygwin/include/cygwin/grp.h#L19 * https://github.com/cygwin/cygwin/blob/a3863bfeb73f3c3832038685498c7c4148a06890/newlib/libc/include/grp.h#L67-L78 # Checklist - [ ] Relevant tests in `libc-test/semver` have been updated - [x]...
This PR handles a issue that cygwin actually supports Win32 path, so we need to handle the Win32 prefix and separaters. r? @mati865 cc @jeremyd2019 ~~Not sure if I should...
Closes #288 Closes #419 I also found this bug on with ELF produced on illumos. `st_value` may not be zero because it may indicate the offset of a import function.