由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - thread safe or not???
相关主题
[合集] thread safe or not???真正的multi-threading是5个thread要5个cpu?那apache是真正的m
一直没有很好理解thread join itself,哪位解惑一下 (转载)用pseudo-code 写数据结构问题。
一般thread-safe access哈,居然写完了作业
这个函数有问题吗?multi threading 还是 multi processing
[合集] 为什么多个线程生成的随机数是一样的?thread, semaphore, 问题。
thread-safe singleton implementationExporting pattern rules in recursive make
class的Init()和Reset()需要考虑thread-safe吗?python下的expect
golang 一个thread safe singleton问题多线程编程前景如何?
相关话题的讨论汇总
话题: ptr话题: thread话题: safe话题: public话题: class
进入Programming版参与讨论
1 (共1页)
p*u
发帖数: 2454
1
Please take a look at following Pseudocode. I don't think
it's thread-safe. any ideas how to make it thread-safe?
class A
{
public:
A() : ptr(NULL) { };

void startup(B b, int i)
{
static C c(i);
ptr = &c;
b.dostuff(ptr);
}
private:
const C * ptr;
};
class B
{
public:
B() { };

/*
* value that c points to is NOT copied,
* so it needs to stay valid during
* muliple invocations of dostuff
1 (共1页)
进入Programming版参与讨论
相关主题
多线程编程前景如何?[合集] 为什么多个线程生成的随机数是一样的?
c++下如何实现多线程?thread-safe singleton implementation
[合集] 怎么样提高自己的multi-thread programming能力?class的Init()和Reset()需要考虑thread-safe吗?
有谁用TBB吗golang 一个thread safe singleton问题
[合集] thread safe or not???真正的multi-threading是5个thread要5个cpu?那apache是真正的m
一直没有很好理解thread join itself,哪位解惑一下 (转载)用pseudo-code 写数据结构问题。
一般thread-safe access哈,居然写完了作业
这个函数有问题吗?multi threading 还是 multi processing
相关话题的讨论汇总
话题: ptr话题: thread话题: safe话题: public话题: class