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

Commit 50719c06 authored by android-build-team Robot's avatar android-build-team Robot
Browse files

Snap for 4386413 from 3e833145 to pi-release

Change-Id: Iffc7cccb26e052c3a2b37bfe716c9483a82be9cd
parents 6c20d957 3e833145
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1062,7 +1062,7 @@ static void dumpstate() {
    DumpFile("KERNEL SYNC", "/d/sync");

    RunCommand("PROCESSES AND THREADS",
               {"ps", "-A", "-T", "-Z", "-O", "pri,nice,rtprio,sched,pcy"});
               {"ps", "-A", "-T", "-Z", "-O", "pri,nice,rtprio,sched,pcy,time"});
    RunCommand("LIBRANK", {"librank"}, CommandOptions::AS_ROOT);

    if (ds.IsZipping()) {
+4 −1
Original line number Diff line number Diff line
@@ -16,9 +16,12 @@ cc_library_shared {
    name: "libsensor",

    clang: true,
    cflags: [
        "-Wall",
        "-Werror",
    ],
    cppflags: [
        "-Weverything",
        "-Werror",

        // The static constructors and destructors in this library have not been noted to
        // introduce significant overheads
+2 −0
Original line number Diff line number Diff line
@@ -17,6 +17,8 @@ cc_test {

    clang: true,

    cflags: ["-Wall", "-Werror"],

    srcs: [
        "Sensor_test.cpp",
    ],
+2 −2
Original line number Diff line number Diff line
@@ -151,7 +151,7 @@ int DvrWriteBufferQueue::Dequeue(int timeout, DvrWriteBuffer* write_buffer,

int DvrWriteBufferQueue::GainBuffer(int timeout,
                                    DvrWriteBuffer** out_write_buffer,
                                    DvrNativeBufferMetadata* out_meta,
                                    DvrNativeBufferMetadata* /* out_meta */,
                                    int* out_fence_fd) {
  DvrWriteBuffer write_buffer;
  int fence_fd;
@@ -438,7 +438,7 @@ int DvrReadBufferQueue::AcquireBuffer(int timeout,
}

int DvrReadBufferQueue::ReleaseBuffer(DvrReadBuffer* read_buffer,
                                      const DvrNativeBufferMetadata* meta,
                                      const DvrNativeBufferMetadata* /* meta */,
                                      int release_fence_fd) {
  LOG_FATAL_IF(
      (read_buffers->slot < 0 || read_buffers->slot >= read_buffers_size()),
+1 −0
Original line number Diff line number Diff line
@@ -3,6 +3,7 @@ cc_library_shared {
    srcs: [
        "SchedulingPolicyService.cpp",
    ],
    cflags: ["-Wall", "-Werror"],
    shared_libs: [
        "libhidlbase",
        "libhidltransport",
Loading