ad58e71bea
Signed-off-by: Martin Vogel <martin.vogel.tech@gmail.com>
11 lines
509 B
C
11 lines
509 B
C
#ifndef TEST_DAEMON_RUNTIME_CONTRACT_H
|
|
#define TEST_DAEMON_RUNTIME_CONTRACT_H
|
|
|
|
/* A copied sanitizer executable can take tens of seconds to fingerprint. The
|
|
* parent watchdog covers both the HELLO exchange and its bounded close. */
|
|
#define TF_RUNTIME_IMAGE_EXCHANGE_TIMEOUT_MS 60000U
|
|
#define TF_RUNTIME_IMAGE_WATCHDOG_MS (2U * TF_RUNTIME_IMAGE_EXCHANGE_TIMEOUT_MS + 5000U)
|
|
#define TF_RUNTIME_IMAGE_WATCHDOG_SECONDS ((TF_RUNTIME_IMAGE_WATCHDOG_MS + 999U) / 1000U)
|
|
|
|
#endif /* TEST_DAEMON_RUNTIME_CONTRACT_H */
|