Publisher and Subscriber

This commit is contained in:
2024-03-10 17:15:47 +05:30
parent 60786b94e2
commit edb640b492
11 changed files with 687 additions and 30 deletions

7
compile.sh Normal file
View File

@@ -0,0 +1,7 @@
gcc -g -c glthread/glthread.c -o glthread/glthread.o
gcc -g -c notif.c -o notif.o
gcc -g -c rtm_publisher.c -o rtm_publisher.o
gcc -g -c rt.c -o rt.o
gcc -g -c threaded_subsciber.c -o threaded_subsciber.o
gcc -g rtm_publisher.o threaded_subsciber.o rt.o notif.o glthread/glthread.o -o main.exe -lpthread
rm *.o glthread/*.o