zoukankan      html  css  js  c++  java
  • eentrancy and ThreadSafety

    Reentrancy and Thread-Safety

    Throughout the Qt documentation, the terms reentrant and thread-safe are used to specify how a function can be used in multithreaded applications:

    • A reentrant function can be called simultaneously by multiple threads provided that each invocation of the function references unique data.
    • A thread-safe function can be called simultaneously by multiple threads when each invocation references shared data. All access to the shared data is serialized.

    By extension, a class is said to be reentrant if each and every one of its functions can be called simultaneously by multiple threads on different instances of the class. Similarly, the class is said to be thread-safe if the functions can be called by different threads on the same instance.

    Classes in the documentation will be documented as thread-safe only if they are intended to be used by multiple threads.


  • 相关阅读:
    自动化部署功
    docker 安装
    批量操作
    centos7 内核升级
    centos 6.5 升级 内核
    如何进行再linux 下查看 java程序的堆栈信息
    binlog 日志恢复以及操作
    java 中 Integer 比较 问题
    docker 使用
    soucetree 安装
  • 原文地址:https://www.cnblogs.com/baizx/p/1703964.html
Copyright © 2011-2022 走看看