#include #include #include #include sem_t my_semaphore; int main(){ sem_init(&my_semaphore, 0, 5); int sem_val; sem_getvalue(&my_semaphore, &sem_val); printf("Semaphore value after extra posts: %d\n", sem_val); sem_post(&my_semaphore); sem_post(&my_semaphore); sem_post(&my_semaphore); sem_getvalue(&my_semaphore, &sem_val); printf("Semaphore value after extra posts: %d\n", sem_val); sem_destroy(&my_semaphore); return 0; }