tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

PTestShmem.ipdl (296B)


      1 namespace mozilla {
      2 namespace _ipdltest {
      3 
      4 [ChildProc=any, ChildImpl=virtual, ParentImpl=virtual]
      5 protocol PTestShmem {
      6 child:
      7     async Give(Shmem mem, Shmem unsafe, uint32_t expectedSize);
      8 
      9 parent:
     10     async Take(Shmem mem, Shmem unsafe, uint32_t expectedSize);
     11     async __delete__();
     12 };
     13 
     14 }
     15 }