Skip to content
Snippets Groups Projects
Commit 056e5814 authored by deuce's avatar deuce
Browse files

Add thread name for the ANSI key thread.

parent 2be5fdc9
No related branches found
No related tags found
No related merge requests found
......@@ -639,8 +639,8 @@ static void ansi_keyparse(void *par)
int timedout=0;
int unknown=0;
seq[0]=0;
SetThreadName("ANSI Keyparse");
seq[0]=0;
for(;;) {
if(ansi_got_row)
sem_wait(&goahead);
......@@ -809,6 +809,7 @@ static void ansi_keythread(void *params)
{
int sval=1;
SetThreadName("ANSI Key");
_beginthread(ansi_keyparse,1024,NULL);
for(;;) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment