操作系统导论

Hello World

  1. 安装gcc用来编译c代码
bash 复制代码
sudo yum install gcc
  1. 编写Hello World
c 复制代码
#include <stdio.h>

int main() {
    printf("Hello, World!\n");
    return 0;
}
  1. 使用gcc编译
    -o 是指定出处文件的名字------也就是编译完的文件会叫hello
bash 复制代码
gcc hello.c -o hello
  1. 运行
    ./hello运行

开篇

虚拟化CPU

  1. 编写一段代码,效果为反复打印用户启动程序时传入的字符串
    vim cpu.c
c 复制代码
#include <stdio.h>
#include<stdlib.h>
#include<unistd.h>
void spin(int seconds){
        usleep(seconds *1000000);
}
int main(int argc,char *argv[]) {
    if(argc!=2){
        fprintf(stderr,"usage:cpu<string>\n");
        exit(1);
    }
    char* str=argv[1];
    while(1){
        spin(1);
        printf("%s\n",str);
    }

    return 0;
}
  1. 编译
    gcc -o cpu cpu.c
  2. 启动一个
    ./cpu A
  3. 同时启动多个
    ./cpu A & ./cpu B & ./cpu C & ./cpu D
  4. 终止运行
    killall cpu

虚拟化内存

并发

c 复制代码
#include <stdio.h>
#include <stdlib.h>
#include <pthread.h> // 确保包含pthread库的头文件

volatile int counter = 0; // 共享计数器,使用volatile以防止编译器优化
int loops; // 每个线程要执行的循环次数

// 工作线程的函数
void *worker(void *arg) {
    int i;
    for (i = 0; i < loops; i++) {
        counter++; // 增加共享计数器
    }
    return NULL;
}

int main(int argc, char *argv[]) {
    if (argc != 2) { // 检查命令行参数
        fprintf(stderr, "usage: threads <value>\n");
        exit(1);
    }

    loops = atoi(argv[1]); // 从命令行参数获取循环次数
    pthread_t p1, p2; // 创建两个线程标识符

    printf("Initial value : %d\n", counter); // 打印初始计数器值

    // 创建两个线程
    pthread_create(&p1, NULL, worker, NULL); 
    pthread_create(&p2, NULL, worker, NULL); 

    // 等待两个线程完成
    pthread_join(p1, NULL); 
    pthread_join(p2, NULL); 

    printf("Final value : %d\n", counter); // 打印最终计数器值
    return 0;
}

加互斥锁

c 复制代码
#include <pthread.h>

pthread_mutex_t lock; // 声明一个互斥锁

void *worker(void *arg) {
    int i;
    for (i = 0; i < loops; i++) {
        pthread_mutex_lock(&lock); // 加锁
        counter++;
        pthread_mutex_unlock(&lock); // 解锁
    }
    return NULL;
}

int main(int argc, char *argv[]) {
    pthread_mutex_init(&lock, NULL); // 初始化互斥锁
    ...
    pthread_mutex_destroy(&lock); // 销毁互斥锁
}

持久化

相关推荐
水月wwww3 小时前
ubuntu网络连接出错解决办法
linux·运维·计算机网络·ubuntu·操作系统·ubuntu网络连接
酷柚易汛智推官1 天前
Windows 10 停服下的国产化迁移:统信 UOS 工具核心技术深度解析
windows·操作系统·酷柚易汛
梁辰兴2 天前
计算机操作系统:用户层的I/O软件
操作系统·计算机操作系统·用户层·i/o软件
海棠蚀omo3 天前
Linux基础I/O-打开新世界的大门:文件描述符的“分身术”与高级重定向
linux·操作系统
Fuchsia4 天前
Linux软件编程笔记五——进程Ⅰ
linux·c语言·笔记·操作系统·进程
2401_841495644 天前
黑客攻击基础知识
网络·黑客·操作系统·web·计算机结构·应用程序·黑客攻击
gfdgd xi4 天前
GXDE OS 25.2.1 更新了!引入 dtk6,修复系统 bug 若干
linux·运维·ubuntu·操作系统·bug·移植·桌面
东木君_5 天前
芯外拾遗第二篇:编译、工具链、烧录,你真的搞懂了吗?
linux·单片机·操作系统·嵌入式
草帽lufei6 天前
轻松上手WSL安装与使用
linux·前端·操作系统
2401_841495646 天前
【操作系统】模拟真实操作系统核心功能的Java实现
java·操作系统·进程管理·系统调用·并发控制·中断处理·cpu调度