リソースを書き込むスレッドと読み取るスレッドがありますが、pthread_rwlock によって多くのコンテキスト スイッチが発生します。そこで回避方法を考えます。しかし、それが安全かどうかはわかりません。
これはコードです:
sig_atomic_t slot = 0;
struct resource {
sig_atomic_t in_use; /*Counter,if in_use, not zero*/
.....
} xxx[2];
int read_thread()
{
i = slot; /*avoid slot changes in process */
xxx[i].in_use++;
read(xxx[i]);
xxx[i].in_use--;
}
int write_thread()
{
mutex_lock; /*mutex between write threads */
if (slot == 0) {
while(xxx[1].in_use != 0); /*wait last read thread in slot 1*/
clear(xxx[1]);
write(xxx[1]);
slot = 1;
} else if (slot == 1) {
while(xxx[0].in_use != 0);
clear(xxx[0]);
write(xxx[0]);
slot = 0;
}
mutex_unlock;
}
それはうまくいきますか?コストは、ストレージの 2 倍とアトミック変数の 3 倍です。どうもありがとう!