Browse Source

Give the avalon get results thread name the device number as well.

nfactor-troky
Con Kolivas 12 years ago
parent
commit
c87f4c303f
  1. 4
      driver-avalon.c

4
driver-avalon.c

@ -688,11 +688,13 @@ static void *avalon_get_results(void *userdata) @@ -688,11 +688,13 @@ static void *avalon_get_results(void *userdata)
char readbuf[AVALON_READBUF_SIZE];
struct thr_info *thr = info->thr;
int fd = avalon->device_fd;
char threadname[24];
int offset = 0;
pthread_detach(pthread_self());
RenameThread("ava_getres");
snprintf(threadname, 24, "ava_getres/%d", avalon->device_id);
RenameThread(threadname);
while (42) {
struct timeval timeout;

Loading…
Cancel
Save