27 lines
334 B
C++
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
|