Ver código fonte

Kernel: Let's have sys$uname() report "i686" instead of "i386"

We wouldn't be able to run on an 80386 without considerable changes,
so let's be honest here and call it i686.
Andreas Kling 5 anos atrás
pai
commit
3093b019d0
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1 1
      Kernel/Process.cpp

+ 1 - 1
Kernel/Process.cpp

@@ -1516,7 +1516,7 @@ int Process::sys$uname(utsname* buf)
     strcpy(buf->sysname, "Serenity");
     strcpy(buf->release, "1.0-dev");
     strcpy(buf->version, "FIXME");
-    strcpy(buf->machine, "i386");
+    strcpy(buf->machine, "i686");
     LOCKER(*s_hostname_lock);
     strncpy(buf->nodename, s_hostname->characters(), sizeof(utsname::nodename));
     return 0;