compute-runtime/shared/source/os_interface/linux/sys_calls.h

17 lines
319 B
C++

/*
* Copyright (C) 2020 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#pragma once
namespace NEO {
namespace SysCalls {
int close(int fileDescriptor);
int open(const char *file, int flags);
int ioctl(int fileDescriptor, unsigned long int request, void *arg);
} // namespace SysCalls
} // namespace NEO