mirror of
https://github.com/intel/compute-runtime.git
synced 2025-09-15 13:01:45 +08:00

In order to setup ioctl helper we need to call ioctl to get hw info Related-To: NEO-6591 Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
18 lines
415 B
C++
18 lines
415 B
C++
/*
|
|
* Copyright (C) 2022 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include <string>
|
|
|
|
namespace NEO {
|
|
namespace IoctlToStringHelper {
|
|
std::string getIoctlParamString(int param);
|
|
std::string getIoctlParamStringRemaining(int param);
|
|
std::string getIoctlString(unsigned long request);
|
|
std::string getIoctlStringRemaining(unsigned long request);
|
|
} // namespace IoctlToStringHelper
|
|
} // namespace NEO
|