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:
| Field | Mask | Value | Means |
|---|---|---|---|
| Group | 0xf0000000 | 0x10000000 | SYSTEM |
| Area | 0x0f000000 | 0x01000000 | GLOBAL |
| Type | 0x00ff0000 | 0x00e00000 | MIXED |
| Ordinal | 0x0000ffff | 0x00000f32 | 0xf32 |
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.

