搜索资源列表
Linuxdrive
- linux设备驱动,字符驱动,调试,自锁等-failed to translate
linux
- 判断文件是否上锁,并且判断文件上的锁是什么类型-Judge documents locked, and judge the lock on the file is what type
lockfile
- 文件锁,独占方式锁文件,并行并发的小手段-File lock, exclusive lock files, parallel concurrent small means
pi
- linux下计算PI值,创建线程、互斥锁,可以借鉴一下-PI values calculated under linux, create threads, mutexes, we can draw
fork.tar
- linux 多进程实例,涉及进程间通信以及文件锁的简单应用-linux mutily proces file lock
pthread.c.tar
- 共享锁和信号量的使用方法,多线程程序的设计原理!-Shared locks and semaphores to use, multi-threaded program design principles!
LinuxLab
- Linux基本实验,包括进程通信、多线程、进程锁等使用实例-Linux basic experiments, including interprocess communication, multi-threading, locks and other processes using examples
threadPool.tar
- 如何构建一个简单的线程池,要点:线程池的构建,互斥锁与条件变量的使用-how to build a thread pool
Bankers-algorithm
- 银行家算法是一种最有代表性的避免死锁的算法。又被称为“资源分配拒绝”法-Bankers algorithm is one of the most representative of the algorithm to avoid deadlock. Also known as "resource allocation denial" method
02mutex
- Linux 下的 互斥锁的操作,保证的用的进程的同步-Linux under the mutex operation, ensure that the use of process synchronization
mutex_ok
- 线程之间的互斥锁,当线程之间所用的资源相同,要同时访问,为了防止冲突,要用互斥锁。-请键入文字或网站地址,或者上传文档。 取消 Xiànchéng zhī jiān de hù chì suǒ, dāng xiànchéng zhī jiān suǒyòng de zīyuán xiāngtóng, yào tóngshí fǎngwèn, wèile fángzhǐ chōngtú, yào yòng hù chì suǒ.Mutex between threads, when the
ds_driver
- 高速one-wire总线驱动,亲测可用。该demo在运行时会有一定概率读取失败,原因是没有设置锁和读写屏障。-High-speed one-wire bus driver, pro-test available. The demo at run time will have a certain probability of failure to read, because there is no set lock and literacy barriers.
thread
- thrs_data结构中的几个变量用于读数据线程和显示线程的开始控制和结束控制。start_read:当二个线程同时启动或显示线程先启动时,保证读数据线程先使用缓冲区,=1表示读数据线程已使用了缓冲区;start_disp:在读数据线程对缓冲区进行第一轮操作时,当它已将2个缓冲区写满,而此时显示线程还没有启动或还没有使用过缓冲区,这时应将读数据线程阻塞住,防止它覆盖掉缓冲区中未显示的数据,=1表示显示线程已启动并已使用了缓冲区。在后续交替读数据和显示数据的过程中,由互斥锁来协调二个线程之间的关系