Re: epoll

2021-01-26 Thread Eric Hawicz
On 1/25/2021 10:52 AM, r0ller wrote: Hi All, I tried to wrap in the linux syscalls an epoll implementation that seems to support NetBSD-9.1 https://github.com/jiixyj/epoll-shim but as I've never done such a thing before, it failed of course. First, I copied its source in the

Re: Ideas for stripping tags from document

2021-01-19 Thread Eric Hawicz
On 1/17/2021 6:21 PM, Todd Gruhn wrote: HEY Johnny, that thing with tr -d did not work. When I read the manpage I got and idea: character classes (in this case [:cntrl;]). It turns out that one can do s/[[:cntrl]]/\n/g using PERL. That fixed the prob with \x{d}. I still need to fix \x{92} ,

Re: Alternative DVCS to git: hg?

2019-04-17 Thread Eric Hawicz
On April 17, 2019 10:49:49 AM EDT, Hisashi T Fujinaka wrote: >On Wed, 17 Apr 2019, Johnny Billquist wrote: > >> Agreed. And after having to deal with git for a couple of years, I >must say >> that I find git to be the most problematic VCS I have ever used. > >After using git for my day job,

Re: missing NetBSD 8 packages on ftp.netbsd.org

2019-01-17 Thread Eric Hawicz
On 1/16/2019 9:09 PM, Eric Hawicz wrote: I noticed that a whole ton of packages are missing from http://ftp.netbsd.org/pub/pkgsrc/packages/NetBSD/amd64/8.0/All/. Basically, everything alphabetically after "gimp-docs" is gone, even pkgin is missing. Does anyone know what happened?

Re: Testing memory performance

2018-11-19 Thread Eric Hawicz
On 11/19/2018 4:38 PM, Sad Clouds wrote: On Sun, 18 Nov 2018 16:30:32 -0500 Eric Hawicz wrote: NetBSD: 16 threads x 1 GiB, using 1 KiB memcpy size, no mlock: Thread 2 preflt=13504.86 msec, memcpy=2874.69 MiB/sec ... Total transfer rate: 5817.56 MiB/sec What?  I think your measurements

Re: Testing memory performance

2018-11-18 Thread Eric Hawicz
On 11/18/2018 7:00 AM, Sad Clouds wrote: I'm developing a small tool that tests memory performance/throughput across different environments. I'm noticing performance issues on NetBSD-8, below are the details: ... NetBSD and Linux have different versions of GCC, but I was hoping the following

Re: git https issue

2018-09-18 Thread Eric Hawicz
On 9/18/2018 7:32 AM, m...@netbsd.org wrote: On Tue, Sep 18, 2018 at 01:19:10PM +0200, Riccardo Mottola wrote: I wonder if I can get a "new" libcrypto binary somehow, e.g. by a test build, and replace mine? some update without updating the whole system to unstable? I assume (but not sure) it

Re: pkgin repo change

2018-09-18 Thread Eric Hawicz
On 9/18/2018 4:37 AM, Pedro Pinho wrote: This morning trying to update/upgrade my system I got the following, |~$ sudo pkgin update Password: processing remote summary (http://ftp.fr.NetBSD.org/pub/pkgsrc/packages/NetBSD/amd64/8.0 pkgin: Could not fetch

Re: nc -N and EOF

2018-02-27 Thread Eric Hawicz
On 2018-02-27 10:33 AM, Patrick Welche wrote: echo "hello from server" | nc -l 1234 nc -l 1234 << EOF hello from server EOF echo "hello from server" > tmpfile nc -l 1234 < tmpfile and in all cases nc -N 127.0.0.1 1234 prints "hello from server" but doesn't exit. Maybe