summaryrefslogtreecommitdiffstats
path: root/ipc/ipdl/test/ipdl/ok/Pshmem.ipdl
blob: 0894e9565229d341e81fe3aafef742093fe35e7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
union Foo {
    int;
    Shmem;
};

intr protocol Pshmem {
parent:
    async Msg(Shmem s, Foo f);
    sync SyncMsg(Shmem s, Foo f)
        returns (Shmem t, Foo g);
    [LegacyIntr] intr InterruptMsg(Shmem s, Foo f)
        returns (Shmem t, Foo g);
};