2025-09-11 10:56:31 -04:00
|
|
|
/*
|
2026-01-08 14:36:57 -06:00
|
|
|
* Copyright © Advanced Micro Devices, Inc., or its affiliates.
|
|
|
|
|
*
|
2025-09-11 10:56:31 -04:00
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
|
*/
|
2026-01-08 14:36:57 -06:00
|
|
|
|
2015-03-24 19:17:26 -05:00
|
|
|
#ifndef HSA_PERF_SRC_UTILS_OS_H_
|
|
|
|
|
#define HSA_PERF_SRC_UTILS_OS_H_
|
|
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
|
|
// Set envriroment variable
|
|
|
|
|
void SetEnv(const char* env_var_name, const char* env_var_value);
|
|
|
|
|
|
|
|
|
|
// Get the value of enviroment
|
|
|
|
|
char* GetEnv(const char* env_var_name);
|
|
|
|
|
|
|
|
|
|
#endif
|