mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
19 lines
374 B
Plaintext
19 lines
374 B
Plaintext
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.
|
|
|
|
rpc protocol PTestBadActor {
|
|
manages PTestBadActorSub;
|
|
|
|
child:
|
|
PTestBadActorSub();
|
|
__delete__();
|
|
};
|
|
|
|
} // namespace _ipdltest
|
|
} // namespace mozilla
|