mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-30 21:55:31 +00:00
96e16361c2
--HG-- extra : rebase_source : e640fb691b0465d3679a61e4e97ab1eaf401fb5d extra : histedit_source : 957a33f528c95f6badf311f1a9763018c219eabc
21 lines
307 B
Plaintext
21 lines
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
|