diff options
Diffstat (limited to 'src/usr/secureboot/trusted/trustedboot.H')
-rw-r--r-- | src/usr/secureboot/trusted/trustedboot.H | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/usr/secureboot/trusted/trustedboot.H b/src/usr/secureboot/trusted/trustedboot.H index ad15ff8bc..930444f77 100644 --- a/src/usr/secureboot/trusted/trustedboot.H +++ b/src/usr/secureboot/trusted/trustedboot.H @@ -61,12 +61,13 @@ class SystemTpms public: SystemTpms(): msgQ(msg_q_create()), - tpmDaemonShutdown(false) + failedTpmsPosted(false) { } + // NOTE: No destructor implemented to destroy msgQ as required for shutdown msg_q_t msgQ; ///< TrustedBootRp message queue - bool tpmDaemonShutdown; ///< Has the TPM Daemon already been shutdown + bool failedTpmsPosted; ///< Have we already posted TpmTarget tpm[MAX_SYSTEM_TPMS]; }; |