Files
compute-runtime/shared/source/os_interface/sys_calls_common.h
2025-10-13 18:09:41 +02:00

27 lines
356 B
C++

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