dpc
dpc
@lnicola Can you send me your crates.io username? I'll add to to the owners and you have my blessing. :)
Seems so to me. But I have no clue, and haven't wrote for or used Windows in more than a decade, so what do I know. :D
This looks fixed, I can't find this line in configure.ac. Recursive grep does not show any "gmp" string in the sources at all.
I think you could convert the restored data (that is in `rdup` format) with `rdup-tr` to be `tar`, and then use `tar` flags to restore only parts of it. Relevant...
Vim window get's polluted with stdout/stderr of the browser. The best fix would be send stdout/stderr of spawned browser to /dev/null, but I guess :redraw! could be some solution too.
``` % python Python 2.7.6 (default, Mar 22 2014, 22:59:56) [GCC 4.8.2] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> import webbrowser >>> webbrowser.open("x.html") True >>>...
Hmmm... Maybe it is specific to what I'm doing. ```rust impl Drop for ProcessHandleInner { fn drop(&mut self) { let Some(child) = &mut self.child else { return; }; let name...
Oh, shoot. Now I see it's not actually a `send_sigkill` and I'm not 100% sure if the process didn't hang. I don't think it did, because they all get killed...
I pasted relevant part of `gdb` session: https://pastebin.com/VzHF0B5T , including list of threads and stackstrace that is mostly tokio functions if it's of any help.
`block_in_place` blocks the worker threads, not blocking threads, no? The whole point of `block_in_place` is that not having to `Send` anything, because the current worker thread is taken out of...