mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-05-24 06:12:27 +00:00
Fix copy/paste issue in Windows console
This commit is contained in:
parent
bd48e6c666
commit
06c6baaf50
7 changed files with 30 additions and 37 deletions
|
@ -55,7 +55,8 @@ int sigpending(sigset_t *pending) {
|
|||
rc = 0;
|
||||
} else if (IsWindows()) {
|
||||
*pending = atomic_load_explicit(&__sig.pending, memory_order_acquire) |
|
||||
__get_tls()->tib_sigpending;
|
||||
atomic_load_explicit(&__get_tls()->tib_sigpending,
|
||||
memory_order_acquire);
|
||||
rc = 0;
|
||||
} else {
|
||||
rc = enosys();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue