由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - looking for c++ programmers
相关主题
mutex和semaphore的差别到底是什么?boost drives me crazy!! Question!
谁能推荐一个read-writer lock的C++实现? (转载)thread c++ 问题
请问static variable init的问题?请教 boost locks
mutex一问怎样判断什么情况下不会出现race condition
Help on a multithread questionWindows XP与Multithreading Programming
Multi-thread可以mutex锁资源,Multi-process怎么锁资源?Pthread support on Windows XP
来来,讨论一下multithread, multi-core, affinity请教c++ multithreading入门问题
boost thread 里的 shared_mutex 和 readwrite_lock 有什么区别?why use static function here?
相关话题的讨论汇总
话题: c++话题: looking话题: ptr话题: tcpip
进入Programming版参与讨论
1 (共1页)
c**m
发帖数: 30
1
with windows/socket/tcpip/multithreaded/concurrent exps.
c++: you should be able to implement your own smart_ptr.
c**m
发帖数: 30
2
in SF bay area
T*****9
发帖数: 2484
3
smart_ptr实现应该不难啊,用引用计数就可以了
我感兴趣啊

【在 c**m 的大作中提到】
: with windows/socket/tcpip/multithreaded/concurrent exps.
: c++: you should be able to implement your own smart_ptr.

c**m
发帖数: 30
4
yeah, basically template, operator overloading, and reference counting, are
you interested?

【在 T*****9 的大作中提到】
: smart_ptr实现应该不难啊,用引用计数就可以了
: 我感兴趣啊

T*****9
发帖数: 2484
5
Sure!

are

【在 c**m 的大作中提到】
: yeah, basically template, operator overloading, and reference counting, are
: you interested?

h***i
发帖数: 1970
6
还要加上thread safe

are

【在 c**m 的大作中提到】
: yeah, basically template, operator overloading, and reference counting, are
: you interested?

d***q
发帖数: 1119
7
thread safe
put mutex()
in session...haha
h***i
发帖数: 1970
8
没你想象的那么简单,mutex太heavy weight了,一般都是利用cpu提供的test-and-set
之类的指令来实现的,自己看看boost shared_ptr的实现就知道了

【在 d***q 的大作中提到】
: thread safe
: put mutex()
: in session...haha

p*u
发帖数: 2454
9
有boost的水平还愁工作?

set

【在 h***i 的大作中提到】
: 没你想象的那么简单,mutex太heavy weight了,一般都是利用cpu提供的test-and-set
: 之类的指令来实现的,自己看看boost shared_ptr的实现就知道了

k****f
发帖数: 3794
10
boost有什么牛的地方?

【在 p*u 的大作中提到】
: 有boost的水平还愁工作?
:
: set

s*****d
发帖数: 43
11
Hi, anything else other than smart_ptr?
p*u
发帖数: 2454
12
没什么牛的你写一个?

【在 k****f 的大作中提到】
: boost有什么牛的地方?
1 (共1页)
进入Programming版参与讨论
相关主题
why use static function here?Help on a multithread question
Java banned operator overloadingMulti-thread可以mutex锁资源,Multi-process怎么锁资源?
问个overloading new operator的问题来来,讨论一下multithread, multi-core, affinity
请问一个implicit conversion的问题(C++)boost thread 里的 shared_mutex 和 readwrite_lock 有什么区别?
mutex和semaphore的差别到底是什么?boost drives me crazy!! Question!
谁能推荐一个read-writer lock的C++实现? (转载)thread c++ 问题
请问static variable init的问题?请教 boost locks
mutex一问怎样判断什么情况下不会出现race condition
相关话题的讨论汇总
话题: c++话题: looking话题: ptr话题: tcpip