コード例 #1
0
ファイル: QmlZproc.cpp プロジェクト: diorcety/czmq
///
//  Returns true if the process received a SIGINT or SIGTERM signal.
//  It is good practice to use this method to exit any infinite loop
//  processing messages.                                            
bool QmlZprocAttached::interrupted () {
    return zproc_interrupted ();
};
コード例 #2
0
ファイル: qzproc.cpp プロジェクト: evoskuil/czmq
///
//  Returns true if the process received a SIGINT or SIGTERM signal.
//  It is good practice to use this method to exit any infinite loop
//  processing messages.
bool QZproc::interrupted ()
{
    bool rv = zproc_interrupted ();
    return rv;
}