@@ -990,6 +990,7 @@ class Device_manager_Worker_thread_args
990
990
}
991
991
992
992
this ->deviceStarted = 0 ;
993
+ printf (" Done opening\n " );
993
994
return 1 ;
994
995
}
995
996
@@ -1190,33 +1191,37 @@ class Device_manager_Worker_thread_args
1190
1191
if (deviceStarted) this ->ReadFrame ();
1191
1192
1192
1193
pthread_mutex_lock (&this ->lock );
1193
- if (this ->startDeviceFlag .size () > 0 )
1194
+ if (this ->openDeviceFlag .size () > 0 )
1194
1195
{
1195
- int buffer_count = this ->startDeviceFlag [this ->startDeviceFlag .size ()-1 ];
1196
- this ->startDeviceFlag .pop_back ();
1197
- this ->StartDeviceInternal (buffer_count );
1196
+ std::string devName = this ->openDeviceFlag [this ->openDeviceFlag .size ()-1 ];
1197
+ this ->openDeviceFlag .pop_back ();
1198
+ this ->OpenDeviceInternal ( );
1198
1199
}
1199
1200
pthread_mutex_unlock (&this ->lock );
1200
1201
1201
1202
pthread_mutex_lock (&this ->lock );
1202
- if (this ->openDeviceFlag .size () > 0 )
1203
+ if (this ->startDeviceFlag .size () > 0 && this -> openDeviceFlag . size () == 0 )
1203
1204
{
1204
- std::string devName = this ->openDeviceFlag [this ->openDeviceFlag .size ()-1 ];
1205
- this ->openDeviceFlag .pop_back ();
1206
- this ->OpenDeviceInternal ( );
1205
+ int buffer_count = this ->startDeviceFlag [this ->startDeviceFlag .size ()-1 ];
1206
+ this ->startDeviceFlag .pop_back ();
1207
+ this ->StartDeviceInternal (buffer_count );
1207
1208
}
1208
1209
pthread_mutex_unlock (&this ->lock );
1209
1210
1210
1211
pthread_mutex_lock (&this ->lock );
1211
- if (this ->stopDeviceFlag )
1212
+ if (this ->stopDeviceFlag
1213
+ && this ->openDeviceFlag .size () == 0
1214
+ && this ->startDeviceFlag .size () == 0 )
1212
1215
{
1213
1216
this ->StopDeviceInternal ();
1214
1217
this ->stopDeviceFlag = 0 ;
1215
1218
}
1216
1219
pthread_mutex_unlock (&this ->lock );
1217
1220
1218
1221
pthread_mutex_lock (&this ->lock );
1219
- if (this ->closeDeviceFlag )
1222
+ if (this ->closeDeviceFlag && !this ->stopDeviceFlag
1223
+ && this ->openDeviceFlag .size () == 0
1224
+ && this ->startDeviceFlag .size () == 0 )
1220
1225
{
1221
1226
this ->CloseDeviceInternal ();
1222
1227
this ->closeDeviceFlag = 0 ;
0 commit comments