mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-15 04:31:49 +08:00
1d506c26d9
This commit is the result of the following actions: - Running gdb/copyright.py to update all of the copyright headers to include 2024, - Manually updating a few files the copyright.py script told me to update, these files had copyright headers embedded within the file, - Regenerating gdbsupport/Makefile.in to refresh it's copyright date, - Using grep to find other files that still mentioned 2023. If these files were updated last year from 2022 to 2023 then I've updated them this year to 2024. I'm sure I've probably missed some dates. Feel free to fix them up as you spot them.
86 lines
2.1 KiB
C
86 lines
2.1 KiB
C
/* Target errno mappings for newlib/libgloss environment.
|
|
Copyright 1995-2024 Free Software Foundation, Inc.
|
|
Contributed by Mike Frysinger.
|
|
|
|
This file is part of simulators.
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it 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.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but 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
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
|
|
|
/* This must come before any other includes. */
|
|
#include "defs.h"
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include "sim/callback.h"
|
|
|
|
/* This file is kept up-to-date via the gennltvals.py script. Do not edit
|
|
anything between the START & END comment blocks below. */
|
|
|
|
CB_TARGET_DEFS_MAP cb_init_open_map[] = {
|
|
/* gennltvals: START */
|
|
#ifdef O_ACCMODE
|
|
{ "O_ACCMODE", O_ACCMODE, (0|1|2) },
|
|
#endif
|
|
#ifdef O_APPEND
|
|
{ "O_APPEND", O_APPEND, 0x0008 },
|
|
#endif
|
|
#ifdef O_CLOEXEC
|
|
{ "O_CLOEXEC", O_CLOEXEC, 0x40000 },
|
|
#endif
|
|
#ifdef O_CREAT
|
|
{ "O_CREAT", O_CREAT, 0x0200 },
|
|
#endif
|
|
#ifdef O_DIRECT
|
|
{ "O_DIRECT", O_DIRECT, 0x80000 },
|
|
#endif
|
|
#ifdef O_DIRECTORY
|
|
{ "O_DIRECTORY", O_DIRECTORY, 0x200000 },
|
|
#endif
|
|
#ifdef O_EXCL
|
|
{ "O_EXCL", O_EXCL, 0x0800 },
|
|
#endif
|
|
#ifdef O_EXEC
|
|
{ "O_EXEC", O_EXEC, 0x400000 },
|
|
#endif
|
|
#ifdef O_NOCTTY
|
|
{ "O_NOCTTY", O_NOCTTY, 0x8000 },
|
|
#endif
|
|
#ifdef O_NOFOLLOW
|
|
{ "O_NOFOLLOW", O_NOFOLLOW, 0x100000 },
|
|
#endif
|
|
#ifdef O_NONBLOCK
|
|
{ "O_NONBLOCK", O_NONBLOCK, 0x4000 },
|
|
#endif
|
|
#ifdef O_RDONLY
|
|
{ "O_RDONLY", O_RDONLY, 0 },
|
|
#endif
|
|
#ifdef O_RDWR
|
|
{ "O_RDWR", O_RDWR, 2 },
|
|
#endif
|
|
#ifdef O_SEARCH
|
|
{ "O_SEARCH", O_SEARCH, 0x400000 },
|
|
#endif
|
|
#ifdef O_SYNC
|
|
{ "O_SYNC", O_SYNC, 0x2000 },
|
|
#endif
|
|
#ifdef O_TRUNC
|
|
{ "O_TRUNC", O_TRUNC, 0x0400 },
|
|
#endif
|
|
#ifdef O_WRONLY
|
|
{ "O_WRONLY", O_WRONLY, 1 },
|
|
#endif
|
|
/* gennltvals: END */
|
|
{ NULL, -1, -1 },
|
|
};
|