SWDEV-444670 - Register the Runtime::tearDown function to be called at exit

Change-Id: I2200b8154ce6806bf99150d0d68f6f20138fa3dc
This commit is contained in:
Ioannis Assiouras
2024-02-07 13:53:50 +00:00
parent 66f6a3e255
commit 5e294f89a8
2 changed files with 11 additions and 3 deletions
+8
View File
@@ -120,4 +120,12 @@ uint ReferenceCountedObject::release() {
return newCount;
}
#ifndef _WIN32
void __attribute__((destructor)) hipTearDown() {
if (amd::IS_HIP) {
Runtime::tearDown();
}
}
#endif
} // namespace amd