Обновление подмодулей

This commit is contained in:
Andrei Astafev 2020-12-01 19:56:25 +03:00
parent d951fd81cb
commit 1af27eaf54
4 changed files with 5 additions and 5 deletions

@ -1 +1 @@
Subproject commit 186d67c4bbc2fa91ecfd837d753631610aff0b1d
Subproject commit f5151f5a2b102b75486c72df8d0dddd842ed0bbc

@ -1 +1 @@
Subproject commit 7424dcf8eb3e2cc0a6c21936b4f6c97db472d406
Subproject commit b05da4d52a0379c9ca9c06fd7898641268624238

@ -1 +1 @@
Subproject commit 00bbf686cdb5bd32ba7105bec1234c85aee6f0aa
Subproject commit bb640e3cf2f287643db784df519d23ddf0a6f1f4

View File

@ -37,7 +37,7 @@ PosixSignalWatcherPrivate::PosixSignalWatcherPrivate( PosixSignalWatcher* q ) :
Q_Q( PosixSignalWatcher );
int signal = 0;
Q_UNUSED( !::read( sockfd, &signal, sizeof( signal ) ) );
(void)::read( sockfd, &signal, sizeof( signal ) );
qDebug() << "Caught signal: " << ::strsignal( signal );
Q_EMIT q->posixSignal( signal );
} );
@ -86,7 +86,7 @@ MYXLIB_INLINE void PosixSignalWatcherPrivate::watchForSignal( int signal )
*/
MYXLIB_INLINE void PosixSignalWatcherPrivate::signalHandler( int signal )
{
Q_UNUSED( !::write( mSockpair[0], &signal, sizeof( signal ) ) );
(void)::write( mSockpair[0], &signal, sizeof( signal ) );
}