Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

📚 The CoCalc Library - books, templates and other resources

132929 views
License: OTHER
1
/* Example code for Think OS
2
3
Copyright 2015 Allen Downey
4
License: Creative Commons Attribution-ShareAlike 3.0
5
6
*/
7
8
typedef sem_t Semaphore;
9
10
Semaphore *make_semaphore(int value);
11
void semaphore_wait(Semaphore *sem);
12
void semaphore_signal(Semaphore *sem);
13
14