Skip to content
Vehicle properties
Diagnostics & OBD2

WATCHDOG_TERMINATED_PROCESS

What it is

Defines a process terminated by car watchdog and the reason of termination.

  int32Values[0]: 1         // ProcessTerminationReason showing why a process is terminated.
  string: "/system/bin/log" // Process execution command.

How the ID is built

A property ID is a 32-bit value packing four fields. Reading 0x11e00f32 apart:

FieldMaskValueMeans
Group0xf00000000x10000000SYSTEM
Area0x0f0000000x01000000GLOBAL
Type0x00ff00000x00e00000MIXED
Ordinal0x0000ffff0x00000f320xf32

Reading it from an app

CarPropertyManager mgr = (CarPropertyManager)
        car.getCarManager(Car.PROPERTY_SERVICE);

mgr.setProperty(Object.class,
        VehiclePropertyIds.WATCHDOG_TERMINATED_PROCESS, 0, value);

This property is write-only — it cannot be read back. It fires a callback whenever the value changes.