mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-03 06:49:52 +08:00
23 lines
272 B
C++
23 lines
272 B
C++
/*
|
|
* Copyright (C) 2018-2023 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
namespace NEO {
|
|
|
|
namespace SysCalls {
|
|
|
|
unsigned int getProcessId();
|
|
|
|
unsigned long getNumThreads();
|
|
|
|
void exit(int code);
|
|
|
|
} // namespace SysCalls
|
|
|
|
} // namespace NEO
|