mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-26 02:17:34 +09:00
18 lines
369 B
Text
18 lines
369 B
Text
include protocol PTestBadActorSub;
|
|
|
|
namespace mozilla {
|
|
namespace _ipdltest {
|
|
|
|
// Test that a parent sending a reentrant __delete__ message
|
|
// is not killed if a child's message races with the reply.
|
|
|
|
intr protocol PTestBadActor {
|
|
manages PTestBadActorSub;
|
|
|
|
child:
|
|
async PTestBadActorSub();
|
|
async __delete__();
|
|
};
|
|
|
|
} // namespace _ipdltest
|
|
} // namespace mozilla
|