File tree Expand file tree Collapse file tree 3 files changed +9
-2
lines changed
Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 1+ #### 1.9.10
2+
3+ * fix macOS >= 15.4 init crashes (LC_RPATH dups)
4+ * build fixes (XIMEA, PCP)
5+ * fix manual port assignment with send+recv over lo in single process
6+ * few other less important fixes
7+
18#### 1.9.9
29
310* build fixes: switch to U22, PCP
Original file line number Diff line number Diff line change 11dnl Process this file with autoconf to produce a configure script.
22
3- AC_INIT ( [ UltraGrid] ,[ 1.9.9 ] ,[ ultragrid-dev@cesnet.cz] )
3+ AC_INIT ( [ UltraGrid] ,[ 1.9.10 ] ,[ ultragrid-dev@cesnet.cz] )
44configure_flags="$*"
55AC_CANONICAL_TARGET
66AM_INIT_AUTOMAKE ( [ 1.10] )
Original file line number Diff line number Diff line change @@ -409,13 +409,13 @@ static void (^cb)(BOOL) = ^void(BOOL granted) {
409409 pthread_mutex_lock (&s->lock );
410410 ret = ring_buffer_read (s->buffer , s->frame .data , s->frame .max_size );
411411 if (!ret) {
412+ s->data_ready = FALSE ;
412413 s->boss_waiting = TRUE ;
413414 while (!s->data_ready ) {
414415 pthread_cond_wait (&s->cv , &s->lock );
415416 }
416417 s->boss_waiting = FALSE ;
417418 ret = ring_buffer_read (s->buffer , s->frame .data , s->frame .max_size );
418- s->data_ready = FALSE ;
419419 }
420420 pthread_mutex_unlock (&s->lock );
421421
You can’t perform that action at this time.
0 commit comments