2017-05-02 21:30:46 +00:00
|
|
|
/* -*-comment-start: "//";comment-end:""-*-
|
2018-07-22 12:24:36 +00:00
|
|
|
* GNU Mes --- Maxwell Equations of Software
|
2017-11-21 18:22:26 +00:00
|
|
|
* Copyright © 2017 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
|
2021-04-04 07:24:37 +00:00
|
|
|
* Copyright © 2021 W. J. van der Laan <laanwj@protonmail.com>
|
2023-05-21 10:15:42 +00:00
|
|
|
* Copyright © 2023 Emily Trau <emily@downunderctf.com>
|
2017-05-02 21:30:46 +00:00
|
|
|
*
|
2018-07-22 12:24:36 +00:00
|
|
|
* This file is part of GNU Mes.
|
2017-05-02 21:30:46 +00:00
|
|
|
*
|
2018-07-22 12:24:36 +00:00
|
|
|
* GNU Mes is free software; you can redistribute it and/or modify it
|
2017-05-02 21:30:46 +00:00
|
|
|
* under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
* your option) any later version.
|
|
|
|
*
|
2018-07-22 12:24:36 +00:00
|
|
|
* GNU Mes is distributed in the hope that it will be useful, but
|
2017-05-02 21:30:46 +00:00
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2018-07-22 12:24:36 +00:00
|
|
|
* along with GNU Mes. If not, see <http://www.gnu.org/licenses/>.
|
2017-05-02 21:30:46 +00:00
|
|
|
*/
|
2017-05-23 05:16:08 +00:00
|
|
|
#ifndef __MES_FCNTL_H
|
|
|
|
#define __MES_FCNTL_H 1
|
2017-05-02 21:30:46 +00:00
|
|
|
|
2019-05-29 14:15:12 +00:00
|
|
|
#if SYSTEM_LIBC
|
2017-05-02 21:30:46 +00:00
|
|
|
#ifndef _GNU_SOURCE
|
|
|
|
#define _GNU_SOURCE
|
|
|
|
#endif
|
2017-07-23 13:49:03 +00:00
|
|
|
#undef __MES_FCNTL_H
|
2017-05-02 21:30:46 +00:00
|
|
|
#include_next <fcntl.h>
|
|
|
|
|
2019-05-29 14:15:12 +00:00
|
|
|
#else // ! SYSTEM_LIBC
|
2018-06-09 15:58:47 +00:00
|
|
|
|
2019-05-12 23:07:32 +00:00
|
|
|
// *INDENT-OFF*
|
2019-03-13 23:08:35 +00:00
|
|
|
#if __linux__
|
2018-08-26 16:34:53 +00:00
|
|
|
#define O_RDONLY 0
|
|
|
|
#define O_WRONLY 1
|
|
|
|
#define O_RDWR 2
|
|
|
|
#define O_CREAT 0x40
|
|
|
|
#define O_EXCL 0x80
|
|
|
|
#define O_TRUNC 0x200
|
|
|
|
#define O_APPEND 0x400
|
2020-06-01 21:48:12 +00:00
|
|
|
|
|
|
|
#ifdef __arm__
|
2023-05-21 10:15:42 +00:00
|
|
|
#define O_DIRECTORY 0x4000
|
|
|
|
#define O_TMPFILE 0x404000
|
2020-06-01 21:48:12 +00:00
|
|
|
#else
|
2023-05-21 10:15:42 +00:00
|
|
|
#define O_DIRECTORY 0x10000
|
|
|
|
#define O_TMPFILE 0x410000
|
2020-06-01 21:48:12 +00:00
|
|
|
#endif
|
|
|
|
|
2021-04-04 07:24:37 +00:00
|
|
|
#define AT_FDCWD -100
|
|
|
|
#define AT_SYMLINK_NOFOLLOW 0x100
|
|
|
|
#define AT_REMOVEDIR 0x200
|
|
|
|
|
2019-03-13 23:08:35 +00:00
|
|
|
#elif __GNU__
|
|
|
|
#define O_RDONLY 1
|
|
|
|
#define O_WRONLY 2
|
|
|
|
#define O_RDWR 3
|
|
|
|
#define O_CREAT 0x10
|
|
|
|
#define O_APPEND 0x100
|
|
|
|
#define O_TRUNC 0x10000
|
|
|
|
#else
|
|
|
|
#error platform not supported
|
|
|
|
#endif
|
2019-05-12 23:07:32 +00:00
|
|
|
// *INDENT-ON*
|
2018-06-09 15:58:47 +00:00
|
|
|
|
|
|
|
#define FD_CLOEXEC 1
|
2017-05-19 04:56:47 +00:00
|
|
|
|
2018-05-27 08:28:30 +00:00
|
|
|
#define F_DUPFD 0
|
|
|
|
#define F_GETFD 1
|
|
|
|
#define F_SETFD 2
|
|
|
|
#define F_GETFL 3
|
|
|
|
#define F_SETFL 4
|
|
|
|
|
2019-07-12 09:56:58 +00:00
|
|
|
#define creat(file_name, mode) open (file_name, O_WRONLY | O_CREAT | O_TRUNC, mode)
|
2018-06-07 06:02:32 +00:00
|
|
|
int dup (int old);
|
|
|
|
int dup2 (int old, int new);
|
2022-11-14 04:25:55 +00:00
|
|
|
|
|
|
|
#if !__M2__
|
2018-06-07 06:02:32 +00:00
|
|
|
int fcntl (int filedes, int command, ...);
|
2017-05-19 04:56:47 +00:00
|
|
|
int open (char const *s, int flags, ...);
|
2022-11-14 04:25:55 +00:00
|
|
|
#endif
|
2018-06-07 06:02:32 +00:00
|
|
|
|
2019-05-29 14:15:12 +00:00
|
|
|
#endif // ! SYSTEM_LIBC
|
2017-05-02 21:30:46 +00:00
|
|
|
|
2017-05-23 05:16:08 +00:00
|
|
|
#endif // __MES_FCNTL_H
|