1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/ipc/ipdl/test/cxx/PTestRacyUndefer.ipdl Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,28 @@ 1.4 + 1.5 +namespace mozilla { 1.6 +namespace _ipdltest { 1.7 + 1.8 + 1.9 +intr protocol PTestRacyUndefer { 1.10 + 1.11 +child: 1.12 + async Start(); 1.13 + 1.14 + async AwakenSpam(); 1.15 + async AwakenRaceWinTwice(); 1.16 + 1.17 + intr Race(); 1.18 + 1.19 + async __delete__(); 1.20 + 1.21 +parent: 1.22 + 1.23 + intr Spam(); 1.24 + intr RaceWinTwice(); 1.25 + 1.26 + async Done(); 1.27 +}; 1.28 + 1.29 + 1.30 +} // namespace mozilla 1.31 +} // namespace _ipdltest