A very informative and detailed concepts are explained using practical examples.Thank for the such a info.
@fleischkaselord34823 жыл бұрын
i love your video. I'm studying computer science in the third semester and your videos help me a lot to work better with c.
@sinistrofu5876 Жыл бұрын
goated playlist, thanks man!
@aishwaryam3497 Жыл бұрын
Really appreciate your effort to prepare videos. Helped me get a clear understanding of all concepts. Could you please make videos on message queues and shared memory as well? It would be helpful if you could share a practical code example for each. Thank you.
@CodeVault Жыл бұрын
Yes, I will
@aishwaryam3497 Жыл бұрын
@@CodeVault Thank you for your response:-)
@bsgamer50693 жыл бұрын
Beautiful video ❤️
@trojan8550 Жыл бұрын
Hello love your videos, it's clear and shiny! Do you have something for mutex attribute and protocols?
@CodeVault Жыл бұрын
Aside from this one, no. I will look into it
@narasarajv52783 жыл бұрын
Thank you.
@xrufi3 жыл бұрын
Can you make video about System V semaphores and how to use them?
@CodeVault3 жыл бұрын
Videos on semaphores are scheduled for today
@j_uwu2 жыл бұрын
nice I'm trying to implement a parallel recursive dfs using pthreads, but I'm not sure where to use the mutex, can anyone help me?
@CodeVault2 жыл бұрын
If all the threads are just reading the data then you don't need any mutex. You might just need a mechanism to communicate when you find the value you were searching for.
@j_uwu2 жыл бұрын
@@CodeVault when i run the code some of the values are printed more than once i'm using an array to keep track of the visited nodes and i think multiple threads can change this value and reread the node
@CodeVault2 жыл бұрын
Ahh, then you need a mutex for that array. But maybe you need a different approach as doing that would make the program run mostly on one thread at a time.