由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - pthread mutex能不能用与thread和process之间
相关主题
java里用synchronized包住block就可以保护多线程同步问题了,这就是c里面的mutex吧?c++问题
thread, semaphore, 问题。condional variable thread sync 问题 (转载)
question about the read/write lockerhow many ways in C++ to release a mutex?
连续release mutex/semphore 2次有什么问题吗?怎么练习C++ multi-threading?
multi threading 还是 multi processingHelp on a multithread question
Restaurant Reservation System...怎么练习multi-threading,平常工作都是用Java框架
编程题又一道多线程 编程,process 和 thread 的一些问题。
精华区翻出来的MS老题,thread safe给大家出个多进程的题
相关话题的讨论汇总
话题: pthread话题: thread话题: process话题: mutex话题: main
进入Programming版参与讨论
1 (共1页)
k****y
发帖数: 781
1
Let's say pthread #1 belongs to process #1. How to use pthread mutex to
protect share resources between process #1 and pthread #1.
s******u
发帖数: 501
2
什么意思?process启动之后本身就是一个main thread,你说的是thread#1和main
thread之间做sync么?这样子当然可以

【在 k****y 的大作中提到】
: Let's say pthread #1 belongs to process #1. How to use pthread mutex to
: protect share resources between process #1 and pthread #1.

k****y
发帖数: 781
3
Thread #1 和main thread 做sync.
Thread #1 和process都要access 同一个slow peripheral hardware, 我想吧大量硬件
处理部分移到thread, 目的就是不想block main thread. Main thread 里面也需要经
常access 这个hardware.

【在 s******u 的大作中提到】
: 什么意思?process启动之后本身就是一个main thread,你说的是thread#1和main
: thread之间做sync么?这样子当然可以

s******u
发帖数: 501
4
可以,这个没问题,就把main thread当成普通的一个thread,直接用mutex.lock/
unlock就可以了

【在 k****y 的大作中提到】
: Thread #1 和main thread 做sync.
: Thread #1 和process都要access 同一个slow peripheral hardware, 我想吧大量硬件
: 处理部分移到thread, 目的就是不想block main thread. Main thread 里面也需要经
: 常access 这个hardware.

g*********e
发帖数: 14401
5
youneed to use ipc technics like shared memory and socket
Synchronization can be done with semaphore

【在 k****y 的大作中提到】
: Let's say pthread #1 belongs to process #1. How to use pthread mutex to
: protect share resources between process #1 and pthread #1.

1 (共1页)
进入Programming版参与讨论
相关主题
给大家出个多进程的题multi threading 还是 multi processing
为什么说semaphore是一种进程间的通信方式。Restaurant Reservation System...
Question on synchronization between processes编程题又一道
thread c++ 问题精华区翻出来的MS老题,thread safe
java里用synchronized包住block就可以保护多线程同步问题了,这就是c里面的mutex吧?c++问题
thread, semaphore, 问题。condional variable thread sync 问题 (转载)
question about the read/write lockerhow many ways in C++ to release a mutex?
连续release mutex/semphore 2次有什么问题吗?怎么练习C++ multi-threading?
相关话题的讨论汇总
话题: pthread话题: thread话题: process话题: mutex话题: main