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

Commit 1af8658a authored by Devin Moore's avatar Devin Moore Committed by Automerger Merge Worker
Browse files

Merge changes from topic "move_fmq" am: 1fa07549

Original change: https://android-review.googlesource.com/c/platform/hardware/interfaces/+/1456140

Change-Id: I6e299ec1a9e5ea564ff0b752c96d16eab754a472
parents 251697bd 1fa07549
Loading
Loading
Loading
Loading
+21 −0
Original line number Diff line number Diff line
aidl_interface {
    name: "android.hardware.common.fmq",
    host_supported: true,
    vendor_available: true,
    vndk: {
        enabled: true,
        support_system_process: true,
    },
    srcs: [
        "android/hardware/common/fmq/*.aidl",
    ],
    stability: "vintf",
    backend: {
        java: {
            enabled: false,
        },
        cpp: {
            enabled: false,
        },
    },
}
+1 −1
Original line number Diff line number Diff line
@@ -15,7 +15,7 @@
// with such a backward incompatible change, it has a high risk of breaking
// later when a module using the interface is updated, e.g., Mainline modules.

package android.hardware.common;
package android.hardware.common.fmq;
@VintfStability
parcelable GrantorDescriptor {
  int offset;
+2 −2
Original line number Diff line number Diff line
@@ -15,10 +15,10 @@
// with such a backward incompatible change, it has a high risk of breaking
// later when a module using the interface is updated, e.g., Mainline modules.

package android.hardware.common;
package android.hardware.common.fmq;
@VintfStability
parcelable MQDescriptor {
  android.hardware.common.GrantorDescriptor[] grantors;
  android.hardware.common.fmq.GrantorDescriptor[] grantors;
  ParcelFileDescriptor fileDescriptor;
  int quantum;
  int flags;
+1 −1
Original line number Diff line number Diff line
@@ -15,7 +15,7 @@
// with such a backward incompatible change, it has a high risk of breaking
// later when a module using the interface is updated, e.g., Mainline modules.

package android.hardware.common;
package android.hardware.common.fmq;
@VintfStability
enum SynchronizedReadWrite {
  EMPTY = 0,
+1 −1
Original line number Diff line number Diff line
@@ -15,7 +15,7 @@
// with such a backward incompatible change, it has a high risk of breaking
// later when a module using the interface is updated, e.g., Mainline modules.

package android.hardware.common;
package android.hardware.common.fmq;
@VintfStability
enum UnsynchronizedWrite {
  EMPTY = 0,
Loading