debugging

This commit is contained in:
rsc 2005-01-07 17:26:07 +00:00
parent c619cc2cb9
commit b4135f04f1
3 changed files with 13 additions and 10 deletions

View file

@ -9,6 +9,7 @@
#include "flayer.h" #include "flayer.h"
#include "samterm.h" #include "samterm.h"
int protodebug;
int cursorfd; int cursorfd;
int plumbfd = -1; int plumbfd = -1;
int input; int input;
@ -126,7 +127,7 @@ again:
if(block & (1<<RResize)) if(block & (1<<RResize))
alts[RResize].op = CHANNOP; alts[RResize].op = CHANNOP;
if(0) print("waitforio %c%c%c%c%c\n", if(protodebug) print("waitforio %c%c%c%c%c\n",
"h-"[alts[RHost].op == CHANNOP], "h-"[alts[RHost].op == CHANNOP],
"k-"[alts[RKeyboard].op == CHANNOP], "k-"[alts[RKeyboard].op == CHANNOP],
"m-"[alts[RMouse].op == CHANNOP], "m-"[alts[RMouse].op == CHANNOP],

View file

@ -38,9 +38,9 @@ rcv(void)
static int i = 0; static int i = 0;
static int errs = 0; static int errs = 0;
if(0) print("rcv in\n"); if(protodebug) print("rcv in\n");
while((c=rcvchar()) != -1){ while((c=rcvchar()) != -1){
if(0) print("."); if(protodebug) print(".");
switch(state){ switch(state){
case 0: case 0:
h.type = c; h.type = c;
@ -81,10 +81,10 @@ if(0) print(".");
} }
break; break;
} }
if(0) print(":"); if(protodebug) print(":");
} }
if(0) print("rcv out\n"); if(protodebug) print("rcv out\n");
} }
Text * Text *

View file

@ -56,6 +56,8 @@ enum Resource
NRes, NRes,
}; };
extern int protodebug;
extern Text **text; extern Text **text;
extern uchar **name; extern uchar **name;
extern ushort *tag; extern ushort *tag;