зеркало из https://github.com/mozilla/gecko-dev.git
21 строка
307 B
Plaintext
21 строка
307 B
Plaintext
namespace mozilla {
|
|
namespace _ipdltest {
|
|
|
|
intr protocol PTestRaceDeadlock {
|
|
both:
|
|
async StartRace();
|
|
|
|
parent:
|
|
intr Lose();
|
|
|
|
child:
|
|
intr Win();
|
|
intr Rpc();
|
|
async __delete__();
|
|
|
|
/* Tests that race resolution does not cause deadlocks */
|
|
};
|
|
|
|
} // namespace _ipdltest
|
|
} // namespace mozilla
|