maneeshaindrachapa / ConcurrentProgramming_Lab_1

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ConcurrentProgramming_Lab_1

How To Run

1.Serial Linked List
Compile : gcc -g -Wall -o serial_linked_list serial_linked_list.c -lm
Run : ./serial_linked_list

2.Mutex Linked List
Compile : gcc -g -Wall -o mutex_linked_list mutex_linked_list.c -pthread -lm
Run : ./mutex_linked_list

3.RW Linked List
Compile : gcc -g -Wall -o rw_linked_list rw_linked_list.c -pthread -lm
Run : ./rw_linked_list

About


Languages

Language:C 100.0%