linux进程同步

linux进程同步

ID:39465774

大小:41.00 KB

页数:6页

时间:2019-07-04

linux进程同步_第1页
linux进程同步_第2页
linux进程同步_第3页
linux进程同步_第4页
linux进程同步_第5页
资源描述:

《linux进程同步》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库

1、包括我自己在内,很多人对内核,进程,线程同步都不是很清楚,下面稍微总结一下: 内核同步:主要是防止多核处理器同时访问修改某段代码,或者在对设备驱动程序进行临界区保护。主要有一下几种方式:1.Mutex(互斥)头文件:#include 初始化方法:DEFINE_MUTEX(name);或者void mutex_init(struct mutex *lock);使用方法:void mutex_lock (struct mutex *lock);尝试得到互斥量,否则进入睡眠,不能被中断,否则会

2、导致进程无法杀死int mutex_lock_interruptible (struct mutex *lock);Same, but can be interrupted. If interrupted, returns a non zero value and doesn't hold the lock. Test the return value!!! 可以被中断int mutex_trylock (struct mutex *lock);Never waits. Returns a non zero valu

3、e if the mutex is not available.int mutex_is_locked(struct mutex *lock);Just tells whether the mutex is locked or not.无等待void mutex_unlock (struct mutex *lock);Releases the lock. Make sure you do it as quickly as possible! 2.Reader/writersemphopres读写信号量Allow sh

4、ared access by unlimited readers, or by only 1 writer. Writers get priority.允许有限数量的读访问,但是只能有一个写访问。void init_rwsem (struct rw_semaphore *sem);void down_read (struct rw_semaphore *sem);int down_read_trylock (struct rw_semaphore *sem);int up_read (struct rw_semaph

5、ore *sem);void down_write (struct rw_semaphore *sem);int down_write_trylock (struct rw_semaphore *sem);int up_write (struct rw_semaphore *sem);Well suited for rare writes, holding the semaphore briefly. Otherwise, readers get starved, waiting too long for the s

6、emaphore to be released. 3.Spinlocks自旋锁初始化:Staticspinlock_t my_lock = SPIN_LOCK_UNLOCKED;Dynamicvoid spin_lock_init (spinlock_t *lock);使用:void spin_[un]lock (spinlock_t *lock);Doesn't disable interrupts. Used for locking in process context(critical sections in 

7、which you do not want to sleep).void spin_lock_irqsave / spin_unlock_irqrestore (spinlock_t *lock, unsigned long flags);Disables / restores IRQs on the local CPU.Typically used when the lock can be accessed in both process and interrupt context, to prevent pree

8、mption by interrupts  进程同步/通信1.Semaphore信号量简单过程:semaphoresv=1;  loopforever{  P(sv);  criticalcodesection;  V(sv);  noncriticalcodesection;}头文件以及函数:#includeintsem

当前文档最多预览五页,下载文档查看全文

此文档下载收益归作者所有

当前文档最多预览五页,下载文档查看全文
温馨提示:
1. 部分包含数学公式或PPT动画的文件,查看预览时可能会显示错乱或异常,文件下载后无此问题,请放心下载。
2. 本文档由用户上传,版权归属用户,天天文库负责整理代发布。如果您对本文档版权有争议请及时联系客服。
3. 下载前请仔细阅读文档内容,确认文档内容符合您的需求后进行下载,若出现内容与标题不符可向本站投诉处理。
4. 下载文档时可能由于网络波动等原因无法下载或下载错误,付费完成后未能成功下载的用户请联系客服处理。