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