Explorar el Código

Minor userland tweaks.

Andreas Kling hace 6 años
padre
commit
c80a1f39ce
Se han modificado 2 ficheros con 7 adiciones y 1 borrados
  1. 1 1
      Userland/ps.cpp
  2. 6 0
      Userland/sh.cpp

+ 1 - 1
Userland/ps.cpp

@@ -9,7 +9,7 @@ int main(int c, char** v)
         return 1;
     }
     for (;;) {
-        char buf[16];
+        char buf[128];
         ssize_t nread = read(fd, buf, sizeof(buf));
         if (nread == 0)
             break;

+ 6 - 0
Userland/sh.cpp

@@ -41,6 +41,12 @@ int main(int c, char** v)
             printf("failed to read :(\n");
             return 2;
         }
+        if (nread > 2)
+            printf("read %u bytes\n", nread);
+        if (nread > (ssize_t)sizeof(keybuf)) {
+            printf("read() overran the buffer i gave it!\n");
+            return 3;
+        }
         for (ssize_t i = 0; i < nread; ++i) {
             putchar(keybuf[i]);
             if (keybuf[i] != '\n') {