我已经实现了某种用户级线程系统。我需要一些帮助来实现计数信号量,使用二进制信号量实现(如下所述的向上和向下函数)。这是我实现二进制信号量的接口:
typedef enum BinSemStatus{
locked,
unlocked
} BinSemStatus;
struct semaphore {
BinSemStatus status;
int bid;
};
int bsem_alloc();//allocate a new binary semaphore,return its descriptor
void bsem_free(int id);
void bsem_down(int id);
void bsem_up(int id);
这里是计数信号量接口的接口:
struct counting_semaphore* counting_alloc(uint value);
counting_free(struct counting_semaphore* sem);
// If the value representing the count of
// the semaphore variable is not negative, decrement it by 1. If the
// semaphore variable is now
// negative, the thread executing acquire is blocked until the value is
// greater or equal to 1.
// Otherwise, the thread continues execution.
void up(struct counting_semaphore* sem);
// Increments the value of semaphore
// variable by 1.
void down(struct counting_semaphore* sem);
我试图做的是在 void up(structcounting_semaphore* sem) 处锁定值。但正如您在下面看到的那样,这还不够。我在有问题的情况下添加了评论。
struct counting_semaphore {
int binary_descriptor;
int value;
};
void down(struct counting_semaphore *sem){
bsem_down(sem->binary_descriptor);
if (sem->value > 0){
sem->value--;
}
else{
//not sure what to do here, maybe use anather semaphore in some way?
}
bsem_up(sem->binary_descriptor);
}
void up(struct counting_semaphore *sem){
bsem_down(sem->binary_descriptor);
sem->value++;
bsem_up(sem->binary_descriptor);
}