The hardware supported by GNU/Hurd

2025-01-25 Thread Zhaoming Luo
Hi Paolo, The hardware that's supported by GNU/Hurd is described in the following link: https://darnassus.sceen.net/~hurd-web/faq/drivers/ Please feel free to ask questions. Best wishes, Zhaoming

Re: abseil port: strerror_r behaviour differs from Debian/Linux

2025-01-25 Thread Sergey Bugaev
On Sun, Jan 26, 2025 at 12:06 AM Diego Nieto Cid wrote: > Hello, Hello, > However, when running in GNU/Hurd, the output is a bit different: > > strerror_r: Error in unknown error system: So for some background: on the Hurd, Unix errors are unified with Mach error codes (see gnumach

abseil port: strerror_r behaviour differs from Debian/Linux

2025-01-25 Thread Diego Nieto Cid
Hello, Attempting to port abseil source package to the GNU/Hurd I found some weird behaviour in the strerror_r function call when errnum is -1. #include #include int main(int argc, char **argv) { char buf[100] = {0}; strerror_r(-1, buf, 100); printf("strer