Project

General

Profile

Actions

バグ #1426

closed

1.0.0のRingBuffer関連の問題

Added by n-ando over 14 years ago. Updated over 14 years ago.

Status:
終了
Priority:
通常
Assignee:
-
Target version:
-
Start date:
04/22/2010
Due date:
% Done:

100%

Estimated time:

Description

KEK仲吉さん安さんから指摘。

とりあえずの対処として read()の前に InPortに対し isEmpty()を
行っていました。この件を安さんが調査し次のような問題を見つけ
られましたので報告致します(以下、安さんからのメールの抜粋)。

| RingBuffer.hのwriteメソッドで、
| 従来は
|
| if (empty_)
| {
|    Guard eguard(m_empty.mutex);
|    m_empty.cond.signal();
| }
| advanceWptr(1);
|
| となっていました。
| これだと、readでバッファがなく待っていた状態で、writeが入り、
| cond.signalでシグナルを出しますが、 advanceWptr(1)をする前に、
| シグナルを出しているため、writeのバッファポインタがインクリ
| メントされる前に、readがwake upする可能性が出てきてしまいます。
| そこで、下記のように変更しました。
|
| if (empty_)
| {
|     Guard eguard(m_empty.mutex);
|     advanceWptr(1);
|     m_empty.cond.signal();
| } else
|     advanceWptr(1);
|
| これで、昨日の昼から走らせていますが、数秒で止まってしまう場合
| があったり数十分で止まってしまったありする場合があるのに比べて、
| いまだ走っていますので、つじつまがあう点を考えても、問題は解決
| したものと思います。

Related issues 1 (0 open1 closed)

Related to OpenRTM-aist (Java) - バグ #2327: RingBuffer関連の問題終了ga01/16/2012

Actions
Actions #1

Updated by n-ando over 14 years ago

  • Status changed from 新規 to 終了
  • % Done changed from 0 to 100

修正しました。

Actions

Also available in: Atom PDF