Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion Src/orbdump.c
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,8 @@ int main( int argc, char *argv[] )

genericsScreenHandling( !options.mono );

/* Reset the OFLOW handler before we start */
/* Reset the handlers before we start */
ITMDecoderInit( &_r.i, options.forceITMSync );
OFLOWInit( &_r.c );
stream = _tryOpenStream();

Expand Down
3 changes: 2 additions & 1 deletion Src/orbzmq.c
Original file line number Diff line number Diff line change
Expand Up @@ -911,7 +911,8 @@ int main( int argc, char *argv[] )
_r.zmqSocket = zmq_socket( _r.zmqContext, ZMQ_PUB );
zmq_bind( _r.zmqSocket, "tcp://*:3442" ); //options.bindUrl );

/* Reset the OFLOW handler before we start */
/* Reset the handlers before we start */
ITMDecoderInit( &_r.i, options.forceITMSync );
OFLOWInit( &_r.c );

/* This ensures the signal handler gets called */
Expand Down