Kernel/Arbiters: Initialize arb_wait_address in thread struct.

This commit is contained in:
Michael Scire 2018-06-21 05:13:06 -06:00
parent 62bd1299ea
commit 8f8fe62a19
3 changed files with 7 additions and 1 deletions

View file

@ -232,7 +232,7 @@ public:
Handle wait_handle; ///< The handle used to wait for the mutex.
// If waiting for an AddressArbiter, this is the address being waited on.
VAddr arb_wait_address;
VAddr arb_wait_address{0};
ResultCode arb_wait_result{RESULT_SUCCESS}; ///< Result returned when done waiting on AddressArbiter.
std::string name;