Exemple #1
0
///
//  Return use of automatic pre-allocated FDs for zsock instances.
int QmlZsysAttached::autoUseFd () {
    return zsys_auto_use_fd ();
};
JNIEXPORT jint JNICALL
Java_org_zeromq_czmq_Zsys__1_1autoUseFd (JNIEnv *env, jclass c)
{
    jint auto_use_fd_ = (jint) zsys_auto_use_fd ();
    return auto_use_fd_;
}
Exemple #3
0
///
//  Return use of automatic pre-allocated FDs for zsock instances.
int QZsys::autoUseFd ()
{
    int rv = zsys_auto_use_fd ();
    return rv;
}