mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-27 19:07:31 +09:00
20 lines
307 B
Text
20 lines
307 B
Text
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
|