Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 20061034 authored by Hridya Valsaraju's avatar Hridya Valsaraju Committed by android-build-merger
Browse files

Merge "Templatize MQDescriptor" am: 61666e16 am: 28cbdf96

am: b1851bf1

Change-Id: Id4b64ee1523462e924640ca273759f196fe77449
parents 3d68e7e5 b1851bf1
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -25,7 +25,7 @@ interface IBenchmarkMsgQ {
     * by the service. Client can use it to set up the FMQ at its end.
     */
    configureClientInboxSyncReadWrite()
        generates(bool ret, MQDescriptorSync mqDescIn);
        generates(bool ret, fmq_sync<uint8_t> mqDescIn);

    /*
     * This method requests the service to set up Synchronous read/write
@@ -35,7 +35,7 @@ interface IBenchmarkMsgQ {
     * by the service. Client can use it to set up the FMQ at its end.
     */
    configureClientOutboxSyncReadWrite()
        generates(bool ret, MQDescriptorSync mqDescOut);
        generates(bool ret, fmq_sync<uint8_t> mqDescOut);

    /*
     * This method request the service to write into the FMQ.
+2 −2
Original line number Diff line number Diff line
@@ -31,7 +31,7 @@ interface ITestMsgQ {
     * set up by the service. Client can use it to set up the FMQ at its end.
     */
    configureFmqSyncReadWrite()
        generates(bool ret, MQDescriptorSync mqDesc);
        generates(bool ret, fmq_sync<uint16_t> mqDesc);

    /*
     * This method requests the service to set up an unsynchronized write
@@ -42,7 +42,7 @@ interface ITestMsgQ {
     * set up by the service. Client can use it to set up the FMQ at its end.
     */
    configureFmqUnsyncWrite()
        generates(bool ret, MQDescriptorUnsync mqDesc);
        generates(bool ret, fmq_unsync<uint16_t> mqDesc);

    /*
     * This method request the service to write into the synchronized read/write