Linux实验一

#include<stdio.h>

#include<unistd.h>

#include<stdlib.h>

#include<sys/types.h>

int g_var=100;

int main()

{

int var=100;

int pid=fork();

if(pid==0)

{

while(1)

{

g_var++;

var++;

printf("%d %d %d %d\n",g_var,var,getppid(),getpid());

if(g_var>1000||var>1000) break;

sleep(1);

}

}

else

{

sleep(1);

printf("%d %d %d %d\n",g_var,var,getppid(),getpid());

}

return 0;

}

#include <stdio.h>

#include <stdlib.h>

#include <semaphore.h>

#include <pthread.h>

// 声明一个 POSIX 信号量

sem_t semaphore;

// 共享资源

int shared_resource = 0;

// 线程函数

void *thread_function(void *arg) {

int i;

for (i = 0; i < 5; i++) {

// 等待信号量

sem_wait(&semaphore);

// 临界区,访问共享资源

shared_resource++;

printf("Thread: shared_resource = %d\n", shared_resource);

// 释放信号量

sem_post(&semaphore);

}

pthread_exit(NULL);

}

int main() {

// 初始化信号量

if (sem_init(&semaphore, 0, 1) != 0) {

perror("Semaphore initialization failed");

exit(EXIT_FAILURE);

}

pthread_t thread;

// 创建线程

if (pthread_create(&thread, NULL, thread_function, NULL) != 0) {

perror("Thread creation failed");

exit(EXIT_FAILURE);

}

// 等待线程结束

pthread_join(thread, NULL);

// 销毁信号量

sem_destroy(&semaphore);

return 0;

}

#include <stdio.h>

#include <stdlib.h>

#include <pthread.h>

#include <semaphore.h>

#include <unistd.h>

#define NUM_PHILOSOPHERS 5

sem_t forksNUM_PHILOSOPHERS;

void *philosopher(void *arg) {

int id = *(int *)arg;

int left_fork = id;

int right_fork = (id + 1) % NUM_PHILOSOPHERS;

while (1) {

// 思考

printf("Philosopher %d is thinking\n", id);

sleep(rand() % 3);

// 拿起左边的叉子

sem_wait(&forksleft_fork);

printf("Philosopher %d picked up fork %d (left)\n", id, left_fork);

// 拿起右边的叉子

sem_wait(&forksright_fork);

printf("Philosopher %d picked up fork %d (right)\n", id, right_fork);

// 吃饭

printf("Philosopher %d is eating\n", id);

sleep(rand() % 3);

// 放下左边的叉子

sem_post(&forksleft_fork);

printf("Philosopher %d put down fork %d (left)\n", id, left_fork);

// 放下右边的叉子

sem_post(&forksright_fork);

printf("Philosopher %d put down fork %d (right)\n", id, right_fork);

}

}

int main() {

pthread_t philosophersNUM_PHILOSOPHERS;

int idsNUM_PHILOSOPHERS;

// 初始化叉子的信号量

for (int i = 0; i < NUM_PHILOSOPHERS; ++i) {

sem_init(&forksi, 0, 1);

}

// 创建哲学家线程

for (int i = 0; i < NUM_PHILOSOPHERS; ++i) {

idsi = i;

pthread_create(&philosophersi, NULL, philosopher, &idsi);

}

// 等待线程结束

for (int i = 0; i < NUM_PHILOSOPHERS; ++i) {

pthread_join(philosophersi, NULL);

}

// 销毁叉子的信号量

for (int i = 0; i < NUM_PHILOSOPHERS; ++i) {

sem_destroy(&forksi);

}

return 0;

}

相关推荐
不能跑的代码不是好代码8 小时前
Linux系统常用命令中文速查表
linux·运维·服务器
石一峰6999 小时前
深入理解 Linux 中断三层机制与 1-Wire 时序锁原理
linux·运维·服务器
无限码农10 小时前
Linux上通过cmake编译uchardet
linux·运维·服务器
运维大师11 小时前
【Linux运维极简教程】06-网络配置与管理
linux·运维
探索云原生14 小时前
终于搞懂 Kueue:5 个核心对象一次讲透
linux·docker·ai·云原生·kubernetes
An_s15 小时前
机器学习python之识别图中物品信息
java·linux·开发语言
Championship.23.2415 小时前
Linux 3.0 LVDS驱动开发详解
linux·运维·驱动开发·lvds
风向决定发型丶16 小时前
Shell中的特殊变量
linux·运维·bash
mounter62517 小时前
走向长时运行:引入协程(Coroutines),打破 BPF 程序的“一堂到底”限制
linux·ebpf·kernel
运维大师17 小时前
【Linux运维极简教程】05-软件包管理
linux·运维·服务器