Correct previous commit: solve the "stopped clock" syndrome in remote
kernel debugger.
This commit is contained in:
parent
20c3871887
commit
d02a8ed467
@ -188,7 +188,7 @@ getpacket (char *buffer)
|
|||||||
unsigned char ch;
|
unsigned char ch;
|
||||||
int s;
|
int s;
|
||||||
|
|
||||||
s = splhigh ();
|
s = spltty ();
|
||||||
do
|
do
|
||||||
{
|
{
|
||||||
/* wait around for the start character, ignore all other characters */
|
/* wait around for the start character, ignore all other characters */
|
||||||
@ -253,7 +253,7 @@ putpacket (char *buffer)
|
|||||||
int s;
|
int s;
|
||||||
|
|
||||||
/* $<packet info>#<checksum>. */
|
/* $<packet info>#<checksum>. */
|
||||||
s = splhigh ();
|
s = spltty ();
|
||||||
do
|
do
|
||||||
{
|
{
|
||||||
/*
|
/*
|
||||||
|
@ -188,7 +188,7 @@ getpacket (char *buffer)
|
|||||||
unsigned char ch;
|
unsigned char ch;
|
||||||
int s;
|
int s;
|
||||||
|
|
||||||
s = splhigh ();
|
s = spltty ();
|
||||||
do
|
do
|
||||||
{
|
{
|
||||||
/* wait around for the start character, ignore all other characters */
|
/* wait around for the start character, ignore all other characters */
|
||||||
@ -253,7 +253,7 @@ putpacket (char *buffer)
|
|||||||
int s;
|
int s;
|
||||||
|
|
||||||
/* $<packet info>#<checksum>. */
|
/* $<packet info>#<checksum>. */
|
||||||
s = splhigh ();
|
s = spltty ();
|
||||||
do
|
do
|
||||||
{
|
{
|
||||||
/*
|
/*
|
||||||
|
Loading…
Reference in New Issue
Block a user