mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-12 11:10:07 +00:00
Bug fix fix - remove debugging implementation of needoutflush.
This commit is contained in:
parent
78439d25f8
commit
7103ceb031
1 changed files with 2 additions and 1 deletions
|
@ -826,7 +826,7 @@ outsend(void)
|
|||
int
|
||||
needoutflush(void)
|
||||
{
|
||||
return 1;
|
||||
return outmsg >= outdata+DATASIZE;
|
||||
}
|
||||
|
||||
void
|
||||
|
@ -835,6 +835,7 @@ outflush(void)
|
|||
if(outmsg == outdata)
|
||||
return;
|
||||
outbuffered = 0;
|
||||
/* flow control */
|
||||
outT0(Hack);
|
||||
waitack = 1;
|
||||
do
|
||||
|
|
Loading…
Reference in a new issue