zoukankan      html  css  js  c++  java
  • ZeroMQ接口函数之 :zmq_msg_init_size

    ZeroMQ 官方地址 :http://api.zeromq.org/4-1:zmq_msg_init_size

    zmq_msg_init_size(3)     ØMQ Manual - ØMQ/3.2.5

    Name

    zmq_msg_init_size - 使用一个指定的空间大小初始化ZMQ消息对象

    Synopsis

    int zmq_msg_init_size (zmq_msg_t *msg, size_t size);

    Description

    zmq_msg_init_size()函数会分配任何被请求的资源来存储一个size大小字节的消息,并且初始化msg参数指定的消息,用来表示新分配到的消息。

    在函数执行的时候,会选择是否把消息存储在栈里面(小消息),还是堆里面(大消息)。考虑到性能原因,zmq_msg_init_size()函数不会清除消息数据。

    永远不要直接对zmq_msg_t对象进行直接操作,而是要使用zmq_msg函数族进行操作。

    zmq_msg_init()zmq_msg_init_data()zmq_msg_init_size()这三个函数是互斥的。永远不要把一个zmq_msg_t对象初始化两次。

    Return value

    函数zmq_msg_init_size() 执行成功时返回0。否则返回 -1,并且设置errno的值为下列定义的值。

    Errors

      ENOMEM

        存储空间不足。

    See also

    zmq_msg_init_data(3)  zmq_msg_init(3)  zmq_msg_close(3)  zmq_msg_data(3)  zmq_msg_size(3) zmq(7)

    Authors

    This ØMQ manual page was written by Martin Sustrik <sustrik@250bpm.com> and Martin Lucina <mato@kotelna.sk>.

    Web site design and content is copyright (c) 2007-2012 iMatix Corporation. Contact us for professional support. Site content licensed under the Creative Commons Attribution-Share Alike 3.0 License. ØMQ is copyright (c) Copyright (c) 2007-2012 iMatix Corporation and Contributors. ØMQ is free software licensed under the LGPL. ØMQ, ZeroMQ, and 0MQ are trademarks of iMatix Corporation. Terms of Use — Privacy

    Policy

    更多 ZeroMQ API :http://www.cnblogs.com/fengbohello/p/4230135.html

     

    翻译:风波

    mail : fengbohello@qq.com

  • 相关阅读:
    ArcGIS10.3.1于2015年6月发布
    jS数组
    正则表达式
    JS中prototype属性-JS原型模式
    URI, URL, and URN
    JS中的Call和apply
    北京获得2022冬奥会举办权
    JQuery.on()事件绑定
    JavaScript模块化-require.js
    SpringBoot中DataSourceAutoConfiguration注解
  • 原文地址:https://www.cnblogs.com/fengbohello/p/4246581.html
Copyright © 2011-2022 走看看