Re: pthreads, C and guacamole [Was: Reduce attack surface - Tomcat and guacamole...]

2020-04-25 Thread Nick Permyakov
ter made shared between processes, or is flagged to be shared with a child after forking, or remapped to another virtual address in the same process, all of which are highly unlikely. So a process-shared mutex is unnecessary here on any POSIX system, not only on OpenBSD. Nick Permyakov > Hi

Re: ceill(0.9) returns 0 instead of 1 ?

2015-08-11 Thread Nick Permyakov
} in /src/lib/libm/src/ld80/s_ceill.c should read else if((i0|i1)!=0) { se=0x3fff;i0=0x8000;i1=0;} or simpler still else if((i0|i1)!=0) { return 1.0L; } Best regards, Nick Permyakov

FAQ part 4 typos

2014-11-07 Thread Nick Permyakov
"This is so either missed, forgotten or failed file sets can be re-installed, and also so custom file sets can be installed" - I think "that" after "so" would make it clearer. Section 4.9 - Multibooting OpenBSD (amd64, i386) "The boot(8) program is loaded from the floppy, looks for and reads /etc/boot.conf" - maybe change to "...is loaded from the floppy, it then looks for and reads /etc/boot.conf"? Best regards, Nick Permyakov