mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-08-09 11:25:22 +00:00
29 lines
329 B
Plaintext
29 lines
329 B
Plaintext
|
|
namespace mozilla {
|
|
namespace _ipdltest {
|
|
|
|
|
|
intr protocol PTestRacyUndefer {
|
|
|
|
child:
|
|
async Start();
|
|
|
|
async AwakenSpam();
|
|
async AwakenRaceWinTwice();
|
|
|
|
intr Race();
|
|
|
|
async __delete__();
|
|
|
|
parent:
|
|
|
|
intr Spam();
|
|
intr RaceWinTwice();
|
|
|
|
async Done();
|
|
};
|
|
|
|
|
|
} // namespace mozilla
|
|
} // namespace _ipdltest
|