操作系统概念
苦瓜黄瓜金银花
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
操作系统概念第四章编程项目-多线程应用程序排序
Multithreaded Sorting Application Write a multithreaded sorting program that works as follows: A list of integers is divided into two smaller lists of equal size. Two separate threads (which we will term sorting threads) sort each sublist using a sorting a原创 2020-12-15 19:17:39 · 2452 阅读 · 0 评论 -
操作系统概念第二章编程项目-Linux内核模块
操作系统概念第二章编程项目 Linux Kernel Modules - Linux内核模块 第一部分:创建内核模块 Part I—Creating Kernel Modules The first part of this project involves following a series of steps for creating and inserting a module into the Linux kernel. You can list all kernel modules that ar原创 2020-12-12 01:38:43 · 2138 阅读 · 1 评论 -
操作系统概念第四章编程项目-数独解决方案验证器
数独解决方案验证器 数独谜题采用9✖️9网格,其中 #include <iostream> #include <pthread.h> #include <stdio.h> #include <stdlib.h> #define NUMBER_OF_THREADS 11 #define PUZZLE_SIZE 9 void *column_worker(void *param); /* thread that checks c原创 2020-12-03 20:34:18 · 3196 阅读 · 0 评论
分享