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

Commit 3df20dea authored by Devin Moore's avatar Devin Moore
Browse files

Update HIDL EventFlagBits to have the correct values

These values are swapped from the internal libfmq values.

Test: atest fmq_test
Bug: 352396902
Change-Id: Ib6d444e043fd38daabf51bd3cc3458d0c38fd133
parent 92f35901
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -18,8 +18,8 @@ package android.hardware.tests.msgq@1.0;

interface ITestMsgQ {
    enum EventFlagBits : uint32_t {
        FMQ_NOT_EMPTY = 1 << 0,
        FMQ_NOT_FULL  = 1 << 1,
        FMQ_NOT_FULL = 1 << 0,
        FMQ_NOT_EMPTY  = 1 << 1,
    };

    /**