1 | /** @file
|
---|
2 | * IPRT / No-CRT - Minimal unistd.h header.
|
---|
3 | */
|
---|
4 |
|
---|
5 | /*
|
---|
6 | * Copyright (C) 2022 Oracle Corporation
|
---|
7 | *
|
---|
8 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
9 | * available from http://www.virtualbox.org. This file is free software;
|
---|
10 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
11 | * General Public License (GPL) as published by the Free Software
|
---|
12 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
13 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
14 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
15 | *
|
---|
16 | * The contents of this file may alternatively be used under the terms
|
---|
17 | * of the Common Development and Distribution License Version 1.0
|
---|
18 | * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
|
---|
19 | * VirtualBox OSE distribution, in which case the provisions of the
|
---|
20 | * CDDL are applicable instead of those of the GPL.
|
---|
21 | *
|
---|
22 | * You may elect to license modified versions of this file under the
|
---|
23 | * terms and conditions of either the GPL or the CDDL or both.
|
---|
24 | */
|
---|
25 |
|
---|
26 | #ifndef IPRT_INCLUDED_nocrt_unistd_h
|
---|
27 | #define IPRT_INCLUDED_nocrt_unistd_h
|
---|
28 | #ifndef RT_WITHOUT_PRAGMA_ONCE
|
---|
29 | # pragma once
|
---|
30 | #endif
|
---|
31 |
|
---|
32 | #include <iprt/nocrt/sys/types.h>
|
---|
33 |
|
---|
34 |
|
---|
35 | #ifdef IPRT_NO_CRT_FOR_3RD_PARTY
|
---|
36 |
|
---|
37 | int RT_NOCRT(access)(const char *, int) RT_NOEXCEPT;
|
---|
38 | int RT_NOCRT(dup)(int) RT_NOEXCEPT;
|
---|
39 | int RT_NOCRT(dup2)(int, int) RT_NOEXCEPT;
|
---|
40 | ssize_t RT_NOCRT(read)(int, void *, size_t) RT_NOEXCEPT;
|
---|
41 | ssize_t RT_NOCRT(write)(int, const void *, size_t) RT_NOEXCEPT;
|
---|
42 | int RT_NOCRT(close)(int) RT_NOEXCEPT;
|
---|
43 | int RT_NOCRT(isatty)(int) RT_NOEXCEPT;
|
---|
44 | RTPROCESS RT_NOCRT(getpid)(void) RT_NOEXCEPT;
|
---|
45 | RTPROCESS RT_NOCRT(getppid)(void) RT_NOEXCEPT;
|
---|
46 | int RT_NOCRT(unlink)(const char *) RT_NOEXCEPT;
|
---|
47 |
|
---|
48 | int RT_NOCRT(_access)(const char *, int) RT_NOEXCEPT;
|
---|
49 | int RT_NOCRT(_dup)(int) RT_NOEXCEPT;
|
---|
50 | int RT_NOCRT(_dup2)(int, int) RT_NOEXCEPT;
|
---|
51 | ssize_t RT_NOCRT(_read)(int, void *, size_t) RT_NOEXCEPT;
|
---|
52 | ssize_t RT_NOCRT(_write)(int, const void *, size_t) RT_NOEXCEPT;
|
---|
53 | int RT_NOCRT(_close)(int) RT_NOEXCEPT;
|
---|
54 | int RT_NOCRT(_isatty)(int) RT_NOEXCEPT;
|
---|
55 | RTPROCESS RT_NOCRT(_getpid)(void) RT_NOEXCEPT;
|
---|
56 | RTPROCESS RT_NOCRT(_getppid)(void) RT_NOEXCEPT;
|
---|
57 | int RT_NOCRT(_unlink)(const char *) RT_NOEXCEPT;
|
---|
58 |
|
---|
59 | # if !defined(RT_WITHOUT_NOCRT_WRAPPERS) && !defined(RT_WITHOUT_NOCRT_WRAPPER_ALIASES)
|
---|
60 | # define access RT_NOCRT(access)
|
---|
61 | # define dup RT_NOCRT(dup)
|
---|
62 | # define dup2 RT_NOCRT(dup2)
|
---|
63 | # define read RT_NOCRT(read)
|
---|
64 | # define write RT_NOCRT(write)
|
---|
65 | # define close RT_NOCRT(close)
|
---|
66 | # define isatty RT_NOCRT(isatty)
|
---|
67 | # define getpid RT_NOCRT(getpid)
|
---|
68 | # define getppid RT_NOCRT(getppid)
|
---|
69 | # define unlink RT_NOCRT(unlink)
|
---|
70 |
|
---|
71 | # define _access RT_NOCRT(access)
|
---|
72 | # define _dup RT_NOCRT(dup)
|
---|
73 | # define _dup2 RT_NOCRT(dup2)
|
---|
74 | # define _read RT_NOCRT(read)
|
---|
75 | # define _write RT_NOCRT(write)
|
---|
76 | # define _close RT_NOCRT(close)
|
---|
77 | # define _isatty RT_NOCRT(isatty)
|
---|
78 | # define _getpid RT_NOCRT(getpid)
|
---|
79 | # define _getppid RT_NOCRT(getppid)
|
---|
80 | # define _unlink RT_NOCRT(unlink)
|
---|
81 | # endif
|
---|
82 |
|
---|
83 | #endif /* IPRT_NO_CRT_FOR_3RD_PARTY */
|
---|
84 |
|
---|
85 |
|
---|
86 | #endif /* !IPRT_INCLUDED_nocrt_unistd_h */
|
---|
87 |
|
---|