Files
compute-runtime/shared/source/os_interface/sys_calls_common.h
Diedrich, Kamil 5149d74141 refactor: Remove globaly enabled cl_cache
Current behaviour will be detecd path existence

Related-To: NEO-4262

Signed-off-by: Diedrich, Kamil <kamil.diedrich@intel.com>
2023-04-28 23:28:49 +02:00

27 lines
334 B
C++

/*
* Copyright (C) 2018-2023 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#pragma once
#include <string>
namespace NEO {
namespace SysCalls {
unsigned int getProcessId();
unsigned long getNumThreads();
void exit(int code);
bool pathExists(const std::string &path);
} // namespace SysCalls
} // namespace NEO