搜索资源列表
linux_pc
- 操作系统作业:由多进程实现生产者和消费者的同步。由于不是多线程,因此通过共享内存实现。互斥访问通过信号量实现。
chengxuyuanma
- 用多线程同步方法解决读者阅览问题 1) 每个读者进入阅览室后,即时显示“Entered” 及其线程自定义标识,还同时显示阅览室共有几名顾客及其所坐的位置。 2) 至少有10个读者,每人阅览至少3秒钟。 3) 多个读者须共享操作函数代码。 2总的设计思想及系统平台、语言、工具: 设计思想:程序设定的是10个读者和5个座位,对读者进行编号,依次进入阅览室读书,为每一座位列一表目,包括座号和读者号等,读者离开时要登出,即消掉登记的信息。 系统平台:LINUX 语言:C语言
sharedmemry
- linux 多线程编程, 共享内存传递数据,为了实习多个线程同时访问数据,需要互斥,保证数据同步等-linux multithreaded programming, shared memory to transfer data, in order to practice multiple threads simultaneously access the data, need mutual exclusion, to ensure data synchronization
Linux-userthread-library
- 可模拟实现Linux用户级线程库的静态调用,规避了多线程库的竞态条件和复杂的同步问题.除源代码外还有详细的设计说明文档.-Can simulate the realization of Linux user-level Thread Library static call circumvented competing multi-threaded library condition and complex synchronization problems. In addition to sour
QNXprogram
- 介绍了QNX实时操作系统和多线程编程技术,包括线程间同步的方法、多线程程序的分析步骤、线程基本程序结构以及实用编译方法 -Introduced the QNX real-time operating system and multi-threaded programming technologies, including inter-thread synchronization methods, multi-threaded program analysis of the steps, thre
pthread
- linux下的多线程的创建及信号同步,信号量,互斥量-under linux to create multi-threaded and signal synchronization, semaphores, mutex volume
mutex-lock
- 多线程编程-互斥锁 由于线程的清量性,在搜索引擎构建中被广泛使用.线程的实现有多种方式,譬如互斥锁,条件变量,读写锁等.其中互斥锁最为简单,读写锁也与互斥锁类似.在LInux下简单实现一个链表,链表的插入和删除,以及整个链表的析构要考虑多线程的同步-Multi-threaded programming- Mutex clearance due to the amount of threads in the search engines are widely used to build. Th
Reader-Writer
- reader—writer problem 多线程同步算法 linux下实现-reader-writer problem linux multithreaded synchronization algorithm to achieve
pthread
- 互斥量的简单应用,使用互斥量是实现多线程程序中的同步访问的另一种手段 -Mutex amount of simple applications using the exclusive capacity to achieve simultaneous multi-threaded program in an alternative means of access
readerwriter
- 在Linux下用多线程同步方法解决读者-写者问题(Reader-Writer Problem) -In Linux, use the multi-thread synchronization solution to the reader- writer problem (Reader-Writer Problem)
POSIX
- posix多线程程序设计,进程线程,线程控制,线程同步,线程模型-posix multithreaded programming, process threads, thread control, thread synchronization, thread model
grid_thread
- LINUX下多线程序,线程同步实例,实现了线程管理,可直接使用到工程中.-LINUX under the multi-line process, thread synchronization instance, to achieve the thread management can be used directly to the project
Pthreads_Programming
- POSIX多线程程序设计标准讲解, 解释了所有api,同步互斥机制,还有多线程程序设计模型-POSIX standard multithreaded programming to explain, explain all the api, mutex synchronization mechanisms, as well as multi-threaded programming model
pthread_sync_and_mutual
- linux多线程极大方便了程序编写,但同时必须考虑线程同步、互斥问题。 示例代码给出了利用信号量实现P、V操作,从而保证多线程同步、互斥。-linux multithread programming is very convenient, but we must pay attention to synchronization and mutual exclusion. The sample code shows us how to ensure multi-thread synch
semaphore
- 信号量(Semaphore)也被称为信号灯,常常作为在多线程环境下的同步与互斥机制。它负责协调各个线程,以保证它们能够正确、合理的使用公共资源。信号量分为单值和多值两种。单值信号量只能被一个线程获得,而多值信号量可以被若干个线程获得。 本实验是一个信号量实验,父进程作为生产者释放信号量,子进程作为消费者申请信号量。 实验环境 Redhat9.0-Semaphore (Semaphore), also known as signal lights, often in multi-th
cond
- linux多线程同步控制实例代码 可以用cond_wait, cond_signal控制线程同步-linux multithread syncronization 可以用cond_wait, cond_signal控制线程同步
mutex
- 在线程实际运行过程中,经常需要多个线程保持同步。这时可以用互斥锁来完成任务。(Threads often require multiple threads to keep synchronization during the actual operation of the thread. You can then use the mutex to complete the task.)
thread_queue
- 线程池 使用 并行处理;多线程使用时最佳选择;收发同步等操作均可以使用(thread pool code;for multi-thread using)
Linux
- 1.学习并理解如何使用 Hadoop,学会在 Hadoop 中运行简单的程序,了解其运 行过程。 2.通过学习生产者/消费者问题理解多线程同步问题。 1.在 Linux 环境下建立大数据处理框架 (1)学习 Hadoop 的相关知识。 (2)安装并配置 Hadoop 环境。 (3)在 Hadoop 上执行 WordCount 示例。 2. 实现生产者/消费者同步问题 (1)在 linux 系统中学习信号量的使用。 (2)执行生产者与消费者模型。(1. learn and und