M pc/devusb.c => pc/devusb.c +0 -7
@@ 20,13 20,6 @@
#include "io.h"
#include "../port/error.h"
-/*
-#ifndef Inferno
-#include "devtab.h"
-#include "brazilia.h"
-#endif
-*/
-
#define Chatty 1
#define DPRINT if(Chatty)print
#define XPRINT if(debug)print
M port/sysfile.c => port/sysfile.c +1 -1
@@ 26,7 26,7 @@ growfd(Fgrp *f, int fd) /* fd is always >= 0 */
*/
if(f->nfd >= 5000){
Exhausted:
- exhausted("file descriptors");
+ print("no free file descriptors\n");
return -1;
}
newfd = malloc((f->nfd+DELTAFD)*sizeof(Chan*));