2021-07-08 17:19:43 +00:00
|
|
|
/*
|
2024-07-23 12:50:37 +00:00
|
|
|
* Copyright (C) 2018-2024 Intel Corporation
|
2021-07-08 17:19:43 +00:00
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
2023-04-27 08:42:36 +00:00
|
|
|
#include <string>
|
|
|
|
|
|
2021-07-08 17:19:43 +00:00
|
|
|
namespace NEO {
|
|
|
|
|
|
|
|
|
|
namespace SysCalls {
|
|
|
|
|
|
|
|
|
|
unsigned int getProcessId();
|
2024-07-23 12:50:37 +00:00
|
|
|
unsigned int getCurrentProcessId();
|
2021-07-08 17:19:43 +00:00
|
|
|
|
2022-10-06 12:21:52 +00:00
|
|
|
unsigned long getNumThreads();
|
|
|
|
|
|
2023-04-24 20:45:11 +00:00
|
|
|
void exit(int code);
|
|
|
|
|
|
2021-07-08 17:19:43 +00:00
|
|
|
} // namespace SysCalls
|
|
|
|
|
|
|
|
|
|
} // namespace NEO
|