Browse Source

Update volume.c - more iters with less sleeping

250000μs to 100000μs
master
IGP 7 years ago
committed by GitHub
parent
commit
3f3e503221
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/volume.c

+ 2
- 2
src/volume.c View File

@ -80,7 +80,7 @@ static t_pusb_volume *pusb_volume_probe(t_pusb_options *opts,
UDisksClient *udisks) UDisksClient *udisks)
{ {
t_pusb_volume *volume = NULL; t_pusb_volume *volume = NULL;
int maxtries = (opts->probe_timeout * 1000000) / 250000;
int maxtries = (opts->probe_timeout * 1000000) / 100000;
int i; int i;
int j; int j;
GList *blocks = NULL; GList *blocks = NULL;
@ -134,7 +134,7 @@ static t_pusb_volume *pusb_volume_probe(t_pusb_options *opts,
break; break;
} }
usleep(250000);
usleep(100000);
g_main_context_iteration(NULL, FALSE); g_main_context_iteration(NULL, FALSE);
} }


Loading…
Cancel
Save