Renamed kermit_211 to kermit-2.1.1

Fixed compile bug in postmort.c
This commit is contained in:
Ben Gras 2005-06-27 09:46:55 +00:00
parent 53a51816a3
commit d31aba5ee3
2 changed files with 2 additions and 1 deletions

View file

@ -37,7 +37,6 @@ all install clean::
cd ftpd200 && $(MAKE) $@
cd ibm && $(MAKE) $@
cd kermit && $(MAKE) $@
# cd kermit_211 && $(MAKE) $@
cd m4 && $(MAKE) $@
cd make && $(MAKE) $@
cd mined && $(MAKE) $@

View file

@ -270,7 +270,9 @@ struct proc *pt;
printf("Pointer to next ready process: 0x%04.4x\n", pt->p_nextready); /* struct proc * */
#endif
printf("Bit map for pending signals 1-16: 0x%04.4x\n", pt->p_pending); /* int */
#if 0
printf("Count of pending/unfinished signals: 0x%04.4x\n", pt->p_pendcount); /* unsigned */
#endif
}