mirror of
git://git.musl-libc.org/musl
synced 2025-03-06 20:48:29 +01:00
Compare commits
No commits in common. "master" and "v0.7.10" have entirely different histories.
2751 changed files with 28271 additions and 102546 deletions
8
.gitignore
vendored
8
.gitignore
vendored
|
@ -1,8 +0,0 @@
|
||||||
*.o
|
|
||||||
*.lo
|
|
||||||
*.a
|
|
||||||
*.so
|
|
||||||
*.so.1
|
|
||||||
config.mak
|
|
||||||
lib/musl-gcc.specs
|
|
||||||
/obj/
|
|
1
.mailmap
1
.mailmap
|
@ -1 +0,0 @@
|
||||||
Ada Worcester <oss@ada.pikhq.com> <josiahw@gmail.com>
|
|
504
COPYING
Normal file
504
COPYING
Normal file
|
@ -0,0 +1,504 @@
|
||||||
|
GNU LESSER GENERAL PUBLIC LICENSE
|
||||||
|
Version 2.1, February 1999
|
||||||
|
|
||||||
|
Copyright (C) 1991, 1999 Free Software Foundation, Inc.
|
||||||
|
59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
|
Everyone is permitted to copy and distribute verbatim copies
|
||||||
|
of this license document, but changing it is not allowed.
|
||||||
|
|
||||||
|
[This is the first released version of the Lesser GPL. It also counts
|
||||||
|
as the successor of the GNU Library Public License, version 2, hence
|
||||||
|
the version number 2.1.]
|
||||||
|
|
||||||
|
Preamble
|
||||||
|
|
||||||
|
The licenses for most software are designed to take away your
|
||||||
|
freedom to share and change it. By contrast, the GNU General Public
|
||||||
|
Licenses are intended to guarantee your freedom to share and change
|
||||||
|
free software--to make sure the software is free for all its users.
|
||||||
|
|
||||||
|
This license, the Lesser General Public License, applies to some
|
||||||
|
specially designated software packages--typically libraries--of the
|
||||||
|
Free Software Foundation and other authors who decide to use it. You
|
||||||
|
can use it too, but we suggest you first think carefully about whether
|
||||||
|
this license or the ordinary General Public License is the better
|
||||||
|
strategy to use in any particular case, based on the explanations below.
|
||||||
|
|
||||||
|
When we speak of free software, we are referring to freedom of use,
|
||||||
|
not price. Our General Public Licenses are designed to make sure that
|
||||||
|
you have the freedom to distribute copies of free software (and charge
|
||||||
|
for this service if you wish); that you receive source code or can get
|
||||||
|
it if you want it; that you can change the software and use pieces of
|
||||||
|
it in new free programs; and that you are informed that you can do
|
||||||
|
these things.
|
||||||
|
|
||||||
|
To protect your rights, we need to make restrictions that forbid
|
||||||
|
distributors to deny you these rights or to ask you to surrender these
|
||||||
|
rights. These restrictions translate to certain responsibilities for
|
||||||
|
you if you distribute copies of the library or if you modify it.
|
||||||
|
|
||||||
|
For example, if you distribute copies of the library, whether gratis
|
||||||
|
or for a fee, you must give the recipients all the rights that we gave
|
||||||
|
you. You must make sure that they, too, receive or can get the source
|
||||||
|
code. If you link other code with the library, you must provide
|
||||||
|
complete object files to the recipients, so that they can relink them
|
||||||
|
with the library after making changes to the library and recompiling
|
||||||
|
it. And you must show them these terms so they know their rights.
|
||||||
|
|
||||||
|
We protect your rights with a two-step method: (1) we copyright the
|
||||||
|
library, and (2) we offer you this license, which gives you legal
|
||||||
|
permission to copy, distribute and/or modify the library.
|
||||||
|
|
||||||
|
To protect each distributor, we want to make it very clear that
|
||||||
|
there is no warranty for the free library. Also, if the library is
|
||||||
|
modified by someone else and passed on, the recipients should know
|
||||||
|
that what they have is not the original version, so that the original
|
||||||
|
author's reputation will not be affected by problems that might be
|
||||||
|
introduced by others.
|
||||||
|
|
||||||
|
Finally, software patents pose a constant threat to the existence of
|
||||||
|
any free program. We wish to make sure that a company cannot
|
||||||
|
effectively restrict the users of a free program by obtaining a
|
||||||
|
restrictive license from a patent holder. Therefore, we insist that
|
||||||
|
any patent license obtained for a version of the library must be
|
||||||
|
consistent with the full freedom of use specified in this license.
|
||||||
|
|
||||||
|
Most GNU software, including some libraries, is covered by the
|
||||||
|
ordinary GNU General Public License. This license, the GNU Lesser
|
||||||
|
General Public License, applies to certain designated libraries, and
|
||||||
|
is quite different from the ordinary General Public License. We use
|
||||||
|
this license for certain libraries in order to permit linking those
|
||||||
|
libraries into non-free programs.
|
||||||
|
|
||||||
|
When a program is linked with a library, whether statically or using
|
||||||
|
a shared library, the combination of the two is legally speaking a
|
||||||
|
combined work, a derivative of the original library. The ordinary
|
||||||
|
General Public License therefore permits such linking only if the
|
||||||
|
entire combination fits its criteria of freedom. The Lesser General
|
||||||
|
Public License permits more lax criteria for linking other code with
|
||||||
|
the library.
|
||||||
|
|
||||||
|
We call this license the "Lesser" General Public License because it
|
||||||
|
does Less to protect the user's freedom than the ordinary General
|
||||||
|
Public License. It also provides other free software developers Less
|
||||||
|
of an advantage over competing non-free programs. These disadvantages
|
||||||
|
are the reason we use the ordinary General Public License for many
|
||||||
|
libraries. However, the Lesser license provides advantages in certain
|
||||||
|
special circumstances.
|
||||||
|
|
||||||
|
For example, on rare occasions, there may be a special need to
|
||||||
|
encourage the widest possible use of a certain library, so that it becomes
|
||||||
|
a de-facto standard. To achieve this, non-free programs must be
|
||||||
|
allowed to use the library. A more frequent case is that a free
|
||||||
|
library does the same job as widely used non-free libraries. In this
|
||||||
|
case, there is little to gain by limiting the free library to free
|
||||||
|
software only, so we use the Lesser General Public License.
|
||||||
|
|
||||||
|
In other cases, permission to use a particular library in non-free
|
||||||
|
programs enables a greater number of people to use a large body of
|
||||||
|
free software. For example, permission to use the GNU C Library in
|
||||||
|
non-free programs enables many more people to use the whole GNU
|
||||||
|
operating system, as well as its variant, the GNU/Linux operating
|
||||||
|
system.
|
||||||
|
|
||||||
|
Although the Lesser General Public License is Less protective of the
|
||||||
|
users' freedom, it does ensure that the user of a program that is
|
||||||
|
linked with the Library has the freedom and the wherewithal to run
|
||||||
|
that program using a modified version of the Library.
|
||||||
|
|
||||||
|
The precise terms and conditions for copying, distribution and
|
||||||
|
modification follow. Pay close attention to the difference between a
|
||||||
|
"work based on the library" and a "work that uses the library". The
|
||||||
|
former contains code derived from the library, whereas the latter must
|
||||||
|
be combined with the library in order to run.
|
||||||
|
|
||||||
|
GNU LESSER GENERAL PUBLIC LICENSE
|
||||||
|
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
||||||
|
|
||||||
|
0. This License Agreement applies to any software library or other
|
||||||
|
program which contains a notice placed by the copyright holder or
|
||||||
|
other authorized party saying it may be distributed under the terms of
|
||||||
|
this Lesser General Public License (also called "this License").
|
||||||
|
Each licensee is addressed as "you".
|
||||||
|
|
||||||
|
A "library" means a collection of software functions and/or data
|
||||||
|
prepared so as to be conveniently linked with application programs
|
||||||
|
(which use some of those functions and data) to form executables.
|
||||||
|
|
||||||
|
The "Library", below, refers to any such software library or work
|
||||||
|
which has been distributed under these terms. A "work based on the
|
||||||
|
Library" means either the Library or any derivative work under
|
||||||
|
copyright law: that is to say, a work containing the Library or a
|
||||||
|
portion of it, either verbatim or with modifications and/or translated
|
||||||
|
straightforwardly into another language. (Hereinafter, translation is
|
||||||
|
included without limitation in the term "modification".)
|
||||||
|
|
||||||
|
"Source code" for a work means the preferred form of the work for
|
||||||
|
making modifications to it. For a library, complete source code means
|
||||||
|
all the source code for all modules it contains, plus any associated
|
||||||
|
interface definition files, plus the scripts used to control compilation
|
||||||
|
and installation of the library.
|
||||||
|
|
||||||
|
Activities other than copying, distribution and modification are not
|
||||||
|
covered by this License; they are outside its scope. The act of
|
||||||
|
running a program using the Library is not restricted, and output from
|
||||||
|
such a program is covered only if its contents constitute a work based
|
||||||
|
on the Library (independent of the use of the Library in a tool for
|
||||||
|
writing it). Whether that is true depends on what the Library does
|
||||||
|
and what the program that uses the Library does.
|
||||||
|
|
||||||
|
1. You may copy and distribute verbatim copies of the Library's
|
||||||
|
complete source code as you receive it, in any medium, provided that
|
||||||
|
you conspicuously and appropriately publish on each copy an
|
||||||
|
appropriate copyright notice and disclaimer of warranty; keep intact
|
||||||
|
all the notices that refer to this License and to the absence of any
|
||||||
|
warranty; and distribute a copy of this License along with the
|
||||||
|
Library.
|
||||||
|
|
||||||
|
You may charge a fee for the physical act of transferring a copy,
|
||||||
|
and you may at your option offer warranty protection in exchange for a
|
||||||
|
fee.
|
||||||
|
|
||||||
|
2. You may modify your copy or copies of the Library or any portion
|
||||||
|
of it, thus forming a work based on the Library, and copy and
|
||||||
|
distribute such modifications or work under the terms of Section 1
|
||||||
|
above, provided that you also meet all of these conditions:
|
||||||
|
|
||||||
|
a) The modified work must itself be a software library.
|
||||||
|
|
||||||
|
b) You must cause the files modified to carry prominent notices
|
||||||
|
stating that you changed the files and the date of any change.
|
||||||
|
|
||||||
|
c) You must cause the whole of the work to be licensed at no
|
||||||
|
charge to all third parties under the terms of this License.
|
||||||
|
|
||||||
|
d) If a facility in the modified Library refers to a function or a
|
||||||
|
table of data to be supplied by an application program that uses
|
||||||
|
the facility, other than as an argument passed when the facility
|
||||||
|
is invoked, then you must make a good faith effort to ensure that,
|
||||||
|
in the event an application does not supply such function or
|
||||||
|
table, the facility still operates, and performs whatever part of
|
||||||
|
its purpose remains meaningful.
|
||||||
|
|
||||||
|
(For example, a function in a library to compute square roots has
|
||||||
|
a purpose that is entirely well-defined independent of the
|
||||||
|
application. Therefore, Subsection 2d requires that any
|
||||||
|
application-supplied function or table used by this function must
|
||||||
|
be optional: if the application does not supply it, the square
|
||||||
|
root function must still compute square roots.)
|
||||||
|
|
||||||
|
These requirements apply to the modified work as a whole. If
|
||||||
|
identifiable sections of that work are not derived from the Library,
|
||||||
|
and can be reasonably considered independent and separate works in
|
||||||
|
themselves, then this License, and its terms, do not apply to those
|
||||||
|
sections when you distribute them as separate works. But when you
|
||||||
|
distribute the same sections as part of a whole which is a work based
|
||||||
|
on the Library, the distribution of the whole must be on the terms of
|
||||||
|
this License, whose permissions for other licensees extend to the
|
||||||
|
entire whole, and thus to each and every part regardless of who wrote
|
||||||
|
it.
|
||||||
|
|
||||||
|
Thus, it is not the intent of this section to claim rights or contest
|
||||||
|
your rights to work written entirely by you; rather, the intent is to
|
||||||
|
exercise the right to control the distribution of derivative or
|
||||||
|
collective works based on the Library.
|
||||||
|
|
||||||
|
In addition, mere aggregation of another work not based on the Library
|
||||||
|
with the Library (or with a work based on the Library) on a volume of
|
||||||
|
a storage or distribution medium does not bring the other work under
|
||||||
|
the scope of this License.
|
||||||
|
|
||||||
|
3. You may opt to apply the terms of the ordinary GNU General Public
|
||||||
|
License instead of this License to a given copy of the Library. To do
|
||||||
|
this, you must alter all the notices that refer to this License, so
|
||||||
|
that they refer to the ordinary GNU General Public License, version 2,
|
||||||
|
instead of to this License. (If a newer version than version 2 of the
|
||||||
|
ordinary GNU General Public License has appeared, then you can specify
|
||||||
|
that version instead if you wish.) Do not make any other change in
|
||||||
|
these notices.
|
||||||
|
|
||||||
|
Once this change is made in a given copy, it is irreversible for
|
||||||
|
that copy, so the ordinary GNU General Public License applies to all
|
||||||
|
subsequent copies and derivative works made from that copy.
|
||||||
|
|
||||||
|
This option is useful when you wish to copy part of the code of
|
||||||
|
the Library into a program that is not a library.
|
||||||
|
|
||||||
|
4. You may copy and distribute the Library (or a portion or
|
||||||
|
derivative of it, under Section 2) in object code or executable form
|
||||||
|
under the terms of Sections 1 and 2 above provided that you accompany
|
||||||
|
it with the complete corresponding machine-readable source code, which
|
||||||
|
must be distributed under the terms of Sections 1 and 2 above on a
|
||||||
|
medium customarily used for software interchange.
|
||||||
|
|
||||||
|
If distribution of object code is made by offering access to copy
|
||||||
|
from a designated place, then offering equivalent access to copy the
|
||||||
|
source code from the same place satisfies the requirement to
|
||||||
|
distribute the source code, even though third parties are not
|
||||||
|
compelled to copy the source along with the object code.
|
||||||
|
|
||||||
|
5. A program that contains no derivative of any portion of the
|
||||||
|
Library, but is designed to work with the Library by being compiled or
|
||||||
|
linked with it, is called a "work that uses the Library". Such a
|
||||||
|
work, in isolation, is not a derivative work of the Library, and
|
||||||
|
therefore falls outside the scope of this License.
|
||||||
|
|
||||||
|
However, linking a "work that uses the Library" with the Library
|
||||||
|
creates an executable that is a derivative of the Library (because it
|
||||||
|
contains portions of the Library), rather than a "work that uses the
|
||||||
|
library". The executable is therefore covered by this License.
|
||||||
|
Section 6 states terms for distribution of such executables.
|
||||||
|
|
||||||
|
When a "work that uses the Library" uses material from a header file
|
||||||
|
that is part of the Library, the object code for the work may be a
|
||||||
|
derivative work of the Library even though the source code is not.
|
||||||
|
Whether this is true is especially significant if the work can be
|
||||||
|
linked without the Library, or if the work is itself a library. The
|
||||||
|
threshold for this to be true is not precisely defined by law.
|
||||||
|
|
||||||
|
If such an object file uses only numerical parameters, data
|
||||||
|
structure layouts and accessors, and small macros and small inline
|
||||||
|
functions (ten lines or less in length), then the use of the object
|
||||||
|
file is unrestricted, regardless of whether it is legally a derivative
|
||||||
|
work. (Executables containing this object code plus portions of the
|
||||||
|
Library will still fall under Section 6.)
|
||||||
|
|
||||||
|
Otherwise, if the work is a derivative of the Library, you may
|
||||||
|
distribute the object code for the work under the terms of Section 6.
|
||||||
|
Any executables containing that work also fall under Section 6,
|
||||||
|
whether or not they are linked directly with the Library itself.
|
||||||
|
|
||||||
|
6. As an exception to the Sections above, you may also combine or
|
||||||
|
link a "work that uses the Library" with the Library to produce a
|
||||||
|
work containing portions of the Library, and distribute that work
|
||||||
|
under terms of your choice, provided that the terms permit
|
||||||
|
modification of the work for the customer's own use and reverse
|
||||||
|
engineering for debugging such modifications.
|
||||||
|
|
||||||
|
You must give prominent notice with each copy of the work that the
|
||||||
|
Library is used in it and that the Library and its use are covered by
|
||||||
|
this License. You must supply a copy of this License. If the work
|
||||||
|
during execution displays copyright notices, you must include the
|
||||||
|
copyright notice for the Library among them, as well as a reference
|
||||||
|
directing the user to the copy of this License. Also, you must do one
|
||||||
|
of these things:
|
||||||
|
|
||||||
|
a) Accompany the work with the complete corresponding
|
||||||
|
machine-readable source code for the Library including whatever
|
||||||
|
changes were used in the work (which must be distributed under
|
||||||
|
Sections 1 and 2 above); and, if the work is an executable linked
|
||||||
|
with the Library, with the complete machine-readable "work that
|
||||||
|
uses the Library", as object code and/or source code, so that the
|
||||||
|
user can modify the Library and then relink to produce a modified
|
||||||
|
executable containing the modified Library. (It is understood
|
||||||
|
that the user who changes the contents of definitions files in the
|
||||||
|
Library will not necessarily be able to recompile the application
|
||||||
|
to use the modified definitions.)
|
||||||
|
|
||||||
|
b) Use a suitable shared library mechanism for linking with the
|
||||||
|
Library. A suitable mechanism is one that (1) uses at run time a
|
||||||
|
copy of the library already present on the user's computer system,
|
||||||
|
rather than copying library functions into the executable, and (2)
|
||||||
|
will operate properly with a modified version of the library, if
|
||||||
|
the user installs one, as long as the modified version is
|
||||||
|
interface-compatible with the version that the work was made with.
|
||||||
|
|
||||||
|
c) Accompany the work with a written offer, valid for at
|
||||||
|
least three years, to give the same user the materials
|
||||||
|
specified in Subsection 6a, above, for a charge no more
|
||||||
|
than the cost of performing this distribution.
|
||||||
|
|
||||||
|
d) If distribution of the work is made by offering access to copy
|
||||||
|
from a designated place, offer equivalent access to copy the above
|
||||||
|
specified materials from the same place.
|
||||||
|
|
||||||
|
e) Verify that the user has already received a copy of these
|
||||||
|
materials or that you have already sent this user a copy.
|
||||||
|
|
||||||
|
For an executable, the required form of the "work that uses the
|
||||||
|
Library" must include any data and utility programs needed for
|
||||||
|
reproducing the executable from it. However, as a special exception,
|
||||||
|
the materials to be distributed need not include anything that is
|
||||||
|
normally distributed (in either source or binary form) with the major
|
||||||
|
components (compiler, kernel, and so on) of the operating system on
|
||||||
|
which the executable runs, unless that component itself accompanies
|
||||||
|
the executable.
|
||||||
|
|
||||||
|
It may happen that this requirement contradicts the license
|
||||||
|
restrictions of other proprietary libraries that do not normally
|
||||||
|
accompany the operating system. Such a contradiction means you cannot
|
||||||
|
use both them and the Library together in an executable that you
|
||||||
|
distribute.
|
||||||
|
|
||||||
|
7. You may place library facilities that are a work based on the
|
||||||
|
Library side-by-side in a single library together with other library
|
||||||
|
facilities not covered by this License, and distribute such a combined
|
||||||
|
library, provided that the separate distribution of the work based on
|
||||||
|
the Library and of the other library facilities is otherwise
|
||||||
|
permitted, and provided that you do these two things:
|
||||||
|
|
||||||
|
a) Accompany the combined library with a copy of the same work
|
||||||
|
based on the Library, uncombined with any other library
|
||||||
|
facilities. This must be distributed under the terms of the
|
||||||
|
Sections above.
|
||||||
|
|
||||||
|
b) Give prominent notice with the combined library of the fact
|
||||||
|
that part of it is a work based on the Library, and explaining
|
||||||
|
where to find the accompanying uncombined form of the same work.
|
||||||
|
|
||||||
|
8. You may not copy, modify, sublicense, link with, or distribute
|
||||||
|
the Library except as expressly provided under this License. Any
|
||||||
|
attempt otherwise to copy, modify, sublicense, link with, or
|
||||||
|
distribute the Library is void, and will automatically terminate your
|
||||||
|
rights under this License. However, parties who have received copies,
|
||||||
|
or rights, from you under this License will not have their licenses
|
||||||
|
terminated so long as such parties remain in full compliance.
|
||||||
|
|
||||||
|
9. You are not required to accept this License, since you have not
|
||||||
|
signed it. However, nothing else grants you permission to modify or
|
||||||
|
distribute the Library or its derivative works. These actions are
|
||||||
|
prohibited by law if you do not accept this License. Therefore, by
|
||||||
|
modifying or distributing the Library (or any work based on the
|
||||||
|
Library), you indicate your acceptance of this License to do so, and
|
||||||
|
all its terms and conditions for copying, distributing or modifying
|
||||||
|
the Library or works based on it.
|
||||||
|
|
||||||
|
10. Each time you redistribute the Library (or any work based on the
|
||||||
|
Library), the recipient automatically receives a license from the
|
||||||
|
original licensor to copy, distribute, link with or modify the Library
|
||||||
|
subject to these terms and conditions. You may not impose any further
|
||||||
|
restrictions on the recipients' exercise of the rights granted herein.
|
||||||
|
You are not responsible for enforcing compliance by third parties with
|
||||||
|
this License.
|
||||||
|
|
||||||
|
11. If, as a consequence of a court judgment or allegation of patent
|
||||||
|
infringement or for any other reason (not limited to patent issues),
|
||||||
|
conditions are imposed on you (whether by court order, agreement or
|
||||||
|
otherwise) that contradict the conditions of this License, they do not
|
||||||
|
excuse you from the conditions of this License. If you cannot
|
||||||
|
distribute so as to satisfy simultaneously your obligations under this
|
||||||
|
License and any other pertinent obligations, then as a consequence you
|
||||||
|
may not distribute the Library at all. For example, if a patent
|
||||||
|
license would not permit royalty-free redistribution of the Library by
|
||||||
|
all those who receive copies directly or indirectly through you, then
|
||||||
|
the only way you could satisfy both it and this License would be to
|
||||||
|
refrain entirely from distribution of the Library.
|
||||||
|
|
||||||
|
If any portion of this section is held invalid or unenforceable under any
|
||||||
|
particular circumstance, the balance of the section is intended to apply,
|
||||||
|
and the section as a whole is intended to apply in other circumstances.
|
||||||
|
|
||||||
|
It is not the purpose of this section to induce you to infringe any
|
||||||
|
patents or other property right claims or to contest validity of any
|
||||||
|
such claims; this section has the sole purpose of protecting the
|
||||||
|
integrity of the free software distribution system which is
|
||||||
|
implemented by public license practices. Many people have made
|
||||||
|
generous contributions to the wide range of software distributed
|
||||||
|
through that system in reliance on consistent application of that
|
||||||
|
system; it is up to the author/donor to decide if he or she is willing
|
||||||
|
to distribute software through any other system and a licensee cannot
|
||||||
|
impose that choice.
|
||||||
|
|
||||||
|
This section is intended to make thoroughly clear what is believed to
|
||||||
|
be a consequence of the rest of this License.
|
||||||
|
|
||||||
|
12. If the distribution and/or use of the Library is restricted in
|
||||||
|
certain countries either by patents or by copyrighted interfaces, the
|
||||||
|
original copyright holder who places the Library under this License may add
|
||||||
|
an explicit geographical distribution limitation excluding those countries,
|
||||||
|
so that distribution is permitted only in or among countries not thus
|
||||||
|
excluded. In such case, this License incorporates the limitation as if
|
||||||
|
written in the body of this License.
|
||||||
|
|
||||||
|
13. The Free Software Foundation may publish revised and/or new
|
||||||
|
versions of the Lesser General Public License from time to time.
|
||||||
|
Such new versions will be similar in spirit to the present version,
|
||||||
|
but may differ in detail to address new problems or concerns.
|
||||||
|
|
||||||
|
Each version is given a distinguishing version number. If the Library
|
||||||
|
specifies a version number of this License which applies to it and
|
||||||
|
"any later version", you have the option of following the terms and
|
||||||
|
conditions either of that version or of any later version published by
|
||||||
|
the Free Software Foundation. If the Library does not specify a
|
||||||
|
license version number, you may choose any version ever published by
|
||||||
|
the Free Software Foundation.
|
||||||
|
|
||||||
|
14. If you wish to incorporate parts of the Library into other free
|
||||||
|
programs whose distribution conditions are incompatible with these,
|
||||||
|
write to the author to ask for permission. For software which is
|
||||||
|
copyrighted by the Free Software Foundation, write to the Free
|
||||||
|
Software Foundation; we sometimes make exceptions for this. Our
|
||||||
|
decision will be guided by the two goals of preserving the free status
|
||||||
|
of all derivatives of our free software and of promoting the sharing
|
||||||
|
and reuse of software generally.
|
||||||
|
|
||||||
|
NO WARRANTY
|
||||||
|
|
||||||
|
15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO
|
||||||
|
WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
|
||||||
|
EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR
|
||||||
|
OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY
|
||||||
|
KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||||
|
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE
|
||||||
|
LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME
|
||||||
|
THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
||||||
|
|
||||||
|
16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
|
||||||
|
WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY
|
||||||
|
AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU
|
||||||
|
FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR
|
||||||
|
CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE
|
||||||
|
LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING
|
||||||
|
RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
|
||||||
|
FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
|
||||||
|
SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
|
||||||
|
DAMAGES.
|
||||||
|
|
||||||
|
END OF TERMS AND CONDITIONS
|
||||||
|
|
||||||
|
How to Apply These Terms to Your New Libraries
|
||||||
|
|
||||||
|
If you develop a new library, and you want it to be of the greatest
|
||||||
|
possible use to the public, we recommend making it free software that
|
||||||
|
everyone can redistribute and change. You can do so by permitting
|
||||||
|
redistribution under these terms (or, alternatively, under the terms of the
|
||||||
|
ordinary General Public License).
|
||||||
|
|
||||||
|
To apply these terms, attach the following notices to the library. It is
|
||||||
|
safest to attach them to the start of each source file to most effectively
|
||||||
|
convey the exclusion of warranty; and each file should have at least the
|
||||||
|
"copyright" line and a pointer to where the full notice is found.
|
||||||
|
|
||||||
|
<one line to give the library's name and a brief idea of what it does.>
|
||||||
|
Copyright (C) <year> <name of author>
|
||||||
|
|
||||||
|
This library is free software; you can redistribute it and/or
|
||||||
|
modify it under the terms of the GNU Lesser General Public
|
||||||
|
License as published by the Free Software Foundation; either
|
||||||
|
version 2 of the License, or (at your option) any later version.
|
||||||
|
|
||||||
|
This library 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
|
||||||
|
Lesser General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU Lesser General Public
|
||||||
|
License along with this library; if not, write to the Free Software
|
||||||
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
|
|
||||||
|
Also add information on how to contact you by electronic and paper mail.
|
||||||
|
|
||||||
|
You should also get your employer (if you work as a programmer) or your
|
||||||
|
school, if any, to sign a "copyright disclaimer" for the library, if
|
||||||
|
necessary. Here is a sample; alter the names:
|
||||||
|
|
||||||
|
Yoyodyne, Inc., hereby disclaims all copyright interest in the
|
||||||
|
library `Frob' (a library for tweaking knobs) written by James Random Hacker.
|
||||||
|
|
||||||
|
<signature of Ty Coon>, 1 April 1990
|
||||||
|
Ty Coon, President of Vice
|
||||||
|
|
||||||
|
That's all there is to it!
|
||||||
|
|
||||||
|
|
215
COPYRIGHT
215
COPYRIGHT
|
@ -1,193 +1,44 @@
|
||||||
musl as a whole is licensed under the following standard MIT license:
|
musl as a whole is licensed under the GNU LGPL version 2.1 or later.
|
||||||
|
See the file COPYING for the text of this license.
|
||||||
|
|
||||||
----------------------------------------------------------------------
|
See below for the copyright status on all code included in musl:
|
||||||
Copyright © 2005-2020 Rich Felker, et al.
|
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining
|
|
||||||
a copy of this software and associated documentation files (the
|
|
||||||
"Software"), to deal in the Software without restriction, including
|
|
||||||
without limitation the rights to use, copy, modify, merge, publish,
|
|
||||||
distribute, sublicense, and/or sell copies of the Software, and to
|
|
||||||
permit persons to whom the Software is furnished to do so, subject to
|
|
||||||
the following conditions:
|
|
||||||
|
|
||||||
The above copyright notice and this permission notice shall be
|
|
||||||
included in all copies or substantial portions of the Software.
|
|
||||||
|
|
||||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
||||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
||||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
||||||
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
||||||
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
||||||
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
||||||
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
||||||
----------------------------------------------------------------------
|
|
||||||
|
|
||||||
Authors/contributors include:
|
|
||||||
|
|
||||||
A. Wilcox
|
|
||||||
Ada Worcester
|
|
||||||
Alex Dowad
|
|
||||||
Alex Suykov
|
|
||||||
Alexander Monakov
|
|
||||||
Andre McCurdy
|
|
||||||
Andrew Kelley
|
|
||||||
Anthony G. Basile
|
|
||||||
Aric Belsito
|
|
||||||
Arvid Picciani
|
|
||||||
Bartosz Brachaczek
|
|
||||||
Benjamin Peterson
|
|
||||||
Bobby Bingham
|
|
||||||
Boris Brezillon
|
|
||||||
Brent Cook
|
|
||||||
Chris Spiegel
|
|
||||||
Clément Vasseur
|
|
||||||
Daniel Micay
|
|
||||||
Daniel Sabogal
|
|
||||||
Daurnimator
|
|
||||||
David Carlier
|
|
||||||
David Edelsohn
|
|
||||||
Denys Vlasenko
|
|
||||||
Dmitry Ivanov
|
|
||||||
Dmitry V. Levin
|
|
||||||
Drew DeVault
|
|
||||||
Emil Renner Berthing
|
|
||||||
Fangrui Song
|
|
||||||
Felix Fietkau
|
|
||||||
Felix Janda
|
|
||||||
Gianluca Anzolin
|
|
||||||
Hauke Mehrtens
|
|
||||||
He X
|
|
||||||
Hiltjo Posthuma
|
|
||||||
Isaac Dunham
|
|
||||||
Jaydeep Patil
|
|
||||||
Jens Gustedt
|
|
||||||
Jeremy Huntwork
|
|
||||||
Jo-Philipp Wich
|
|
||||||
Joakim Sindholt
|
|
||||||
John Spencer
|
|
||||||
Julien Ramseier
|
|
||||||
Justin Cormack
|
|
||||||
Kaarle Ritvanen
|
|
||||||
Khem Raj
|
|
||||||
Kylie McClain
|
|
||||||
Leah Neukirchen
|
|
||||||
Luca Barbato
|
|
||||||
Luka Perkov
|
|
||||||
Lynn Ochs
|
|
||||||
M Farkas-Dyck (Strake)
|
|
||||||
Mahesh Bodapati
|
|
||||||
Markus Wichmann
|
|
||||||
Masanori Ogino
|
|
||||||
Michael Clark
|
|
||||||
Michael Forney
|
|
||||||
Mikhail Kremnyov
|
|
||||||
Natanael Copa
|
|
||||||
Nicholas J. Kain
|
|
||||||
orc
|
|
||||||
Pascal Cuoq
|
|
||||||
Patrick Oppenlander
|
|
||||||
Petr Hosek
|
|
||||||
Petr Skocik
|
|
||||||
Pierre Carrier
|
|
||||||
Reini Urban
|
|
||||||
Rich Felker
|
|
||||||
Richard Pennington
|
|
||||||
Ryan Fairfax
|
|
||||||
Samuel Holland
|
|
||||||
Segev Finer
|
|
||||||
Shiz
|
|
||||||
sin
|
|
||||||
Solar Designer
|
|
||||||
Stefan Kristiansson
|
|
||||||
Stefan O'Rear
|
|
||||||
Szabolcs Nagy
|
|
||||||
Timo Teräs
|
|
||||||
Trutz Behn
|
|
||||||
Will Dietz
|
|
||||||
William Haddon
|
|
||||||
William Pitcock
|
|
||||||
|
|
||||||
Portions of this software are derived from third-party works licensed
|
|
||||||
under terms compatible with the above MIT license:
|
|
||||||
|
|
||||||
The TRE regular expression implementation (src/regex/reg* and
|
The TRE regular expression implementation (src/regex/reg* and
|
||||||
src/regex/tre*) is Copyright © 2001-2008 Ville Laurikari and licensed
|
src/regex/tre*) is Copyright © 2001-2006 Ville Laurikari and licensed
|
||||||
under a 2-clause BSD license (license text in the source files). The
|
under the terms of the GNU LGPL version 2.1 or later. The included
|
||||||
included version has been heavily modified by Rich Felker in 2012, in
|
version was heavily modified in Spring 2006 by Rich Felker in the
|
||||||
the interests of size, simplicity, and namespace cleanliness.
|
interests of size, simplicity, and namespace cleanliness.
|
||||||
|
|
||||||
Much of the math library code (src/math/* and src/complex/*) is
|
Most of the math library code (src/math/*) is Copyright © 1993 Sun
|
||||||
Copyright © 1993,2004 Sun Microsystems or
|
Microsystems, Inc. Some files are Copyright © 2003 Steven G. Kargl and
|
||||||
Copyright © 2003-2011 David Schultz or
|
labelled as such. All have been licensed under extremely permissive
|
||||||
Copyright © 2003-2009 Steven G. Kargl or
|
terms which are compatible with the GNU LGPL. See the comments in the
|
||||||
Copyright © 2003-2009 Bruce D. Evans or
|
individual files for details.
|
||||||
Copyright © 2008 Stephen L. Moshier or
|
|
||||||
Copyright © 2017-2018 Arm Limited
|
|
||||||
and labelled as such in comments in the individual source files. All
|
|
||||||
have been licensed under extremely permissive terms.
|
|
||||||
|
|
||||||
The ARM memcpy code (src/string/arm/memcpy.S) is Copyright © 2008
|
The implementation of DES for crypt (src/misc/crypt.c) is Copyright ©
|
||||||
The Android Open Source Project and is licensed under a two-clause BSD
|
1994 David Burren. It is licensed under a BSD license compatible with
|
||||||
license. It was taken from Bionic libc, used on Android.
|
the GNU LGPL.
|
||||||
|
|
||||||
The AArch64 memcpy and memset code (src/string/aarch64/*) are
|
|
||||||
Copyright © 1999-2019, Arm Limited.
|
|
||||||
|
|
||||||
The implementation of DES for crypt (src/crypt/crypt_des.c) is
|
|
||||||
Copyright © 1994 David Burren. It is licensed under a BSD license.
|
|
||||||
|
|
||||||
The implementation of blowfish crypt (src/crypt/crypt_blowfish.c) was
|
|
||||||
originally written by Solar Designer and placed into the public
|
|
||||||
domain. The code also comes with a fallback permissive license for use
|
|
||||||
in jurisdictions that may not recognize the public domain.
|
|
||||||
|
|
||||||
The smoothsort implementation (src/stdlib/qsort.c) is Copyright © 2011
|
The smoothsort implementation (src/stdlib/qsort.c) is Copyright © 2011
|
||||||
Lynn Ochs and is licensed under an MIT-style license.
|
Valentin Ochs and is licensed under an MIT-style license compatible
|
||||||
|
with the GNU LGPL.
|
||||||
|
|
||||||
The x86_64 port was written by Nicholas J. Kain and is licensed under
|
The x86_64 port was written by Nicholas J. Kain. See individual files
|
||||||
the standard MIT terms.
|
for their copyright status.
|
||||||
|
|
||||||
The mips and microblaze ports were originally written by Richard
|
All files which have no copyright comments are original works
|
||||||
Pennington for use in the ellcc project. The original code was adapted
|
Copyright © 2005-2011 Rich Felker, the main author of this library.
|
||||||
by Rich Felker for build system and code conventions during upstream
|
The decision to exclude such comments is intentional, as it should be
|
||||||
integration. It is licensed under the standard MIT terms.
|
possible to carry around the complete source code on tiny storage
|
||||||
|
media. All public header files (include/*) should be treated as Public
|
||||||
|
Domain as they intentionally contain no content which can be covered
|
||||||
|
by copyright. Some source modules may fall in this category as well.
|
||||||
|
If you believe that a file is so trivial that it should be in the
|
||||||
|
Public Domain, please contact me and, if I agree, I will explicitly
|
||||||
|
release it from copyright.
|
||||||
|
|
||||||
The mips64 port was contributed by Imagination Technologies and is
|
The following files are trivial, in my opinion not copyrightable in
|
||||||
licensed under the standard MIT terms.
|
the first place, and hereby explicitly released to the Public Domain:
|
||||||
|
|
||||||
The powerpc port was also originally written by Richard Pennington,
|
All public headers: include/*
|
||||||
and later supplemented and integrated by John Spencer. It is licensed
|
Startup files: crt/*
|
||||||
under the standard MIT terms.
|
|
||||||
|
|
||||||
All other files which have no copyright comments are original works
|
|
||||||
produced specifically for use as part of this library, written either
|
|
||||||
by Rich Felker, the main author of the library, or by one or more
|
|
||||||
contibutors listed above. Details on authorship of individual files
|
|
||||||
can be found in the git version control history of the project. The
|
|
||||||
omission of copyright and license comments in each file is in the
|
|
||||||
interest of source tree size.
|
|
||||||
|
|
||||||
In addition, permission is hereby granted for all public header files
|
|
||||||
(include/* and arch/*/bits/*) and crt files intended to be linked into
|
|
||||||
applications (crt/*, ldso/dlstart.c, and arch/*/crt_arch.h) to omit
|
|
||||||
the copyright notice and permission notice otherwise required by the
|
|
||||||
license, and to use these files without any requirement of
|
|
||||||
attribution. These files include substantial contributions from:
|
|
||||||
|
|
||||||
Bobby Bingham
|
|
||||||
John Spencer
|
|
||||||
Nicholas J. Kain
|
|
||||||
Rich Felker
|
|
||||||
Richard Pennington
|
|
||||||
Stefan Kristiansson
|
|
||||||
Szabolcs Nagy
|
|
||||||
|
|
||||||
all of whom have explicitly granted such permission.
|
|
||||||
|
|
||||||
This file previously contained text expressing a belief that most of
|
|
||||||
the files covered by the above exception were sufficiently trivial not
|
|
||||||
to be subject to copyright, resulting in confusion over whether it
|
|
||||||
negated the permissions granted in the license. In the spirit of
|
|
||||||
permissive licensing, and of not having licensing issues being an
|
|
||||||
obstacle to adoption, that text has been removed.
|
|
||||||
|
|
198
INSTALL
198
INSTALL
|
@ -1,179 +1,40 @@
|
||||||
|
|
||||||
Quick Installation Guide for musl libc
|
A quick-and-simple guide to installing musl:
|
||||||
======================================
|
|
||||||
|
|
||||||
There are many different ways to install musl depending on your usage
|
|
||||||
case. This document covers only the build and installation of musl by
|
|
||||||
itself, which is useful for upgrading an existing musl-based system or
|
|
||||||
compiler toolchain, or for using the provided musl-gcc wrapper with an
|
|
||||||
existing non-musl-based compiler.
|
|
||||||
|
|
||||||
Building complete native or cross-compiler toolchains is outside the
|
|
||||||
scope of this INSTALL file. More information can be found on the musl
|
|
||||||
website and community wiki.
|
|
||||||
|
|
||||||
|
|
||||||
Build Prerequisites
|
STEP 1: Configuration
|
||||||
-------------------
|
|
||||||
|
|
||||||
The only build-time prerequisites for musl are GNU Make and a
|
Edit config.mak to override installation prefix, compiler options,
|
||||||
freestanding C99 compiler toolchain targeting the desired instruction
|
target architecture, etc. as needed. Currently supported archs are
|
||||||
set architecture and ABI, with support for a minimal subset of "GNU C"
|
i386 and x86_64. Otherwise, the defaults should be okay for trying out
|
||||||
extensions consisting mainly of gcc-style inline assembly, weak
|
musl with static linking only.
|
||||||
aliases, hidden visibility, and stand-alone assembly source files.
|
|
||||||
|
|
||||||
GCC, LLVM/clang, Firm/cparser, and PCC have all successfully built
|
DO NOT set the prefix to /, /usr, or even /usr/local unless you really
|
||||||
musl, but GCC is the most widely used/tested. Recent compiler (and
|
know what you're doing! You'll probably break your system such that
|
||||||
binutils) versions should be used if possible since some older
|
you'll no longer be able to compile and link programs against glibc!
|
||||||
versions have bugs which affect musl.
|
This kind of setup should only be used if you're building a system
|
||||||
|
where musl is the default/primary/only libc.
|
||||||
|
|
||||||
The system used to build musl does not need to be Linux-based, nor do
|
The default prefix is /usr/local/musl for a reason, but some people
|
||||||
the Linux kernel headers need to be available.
|
may prefer /opt/musl or $HOME/musl.
|
||||||
|
|
||||||
|
|
||||||
|
STEP 2: Compiling
|
||||||
|
|
||||||
Supported Targets
|
Run "make". (GNU make is required.)
|
||||||
-----------------
|
|
||||||
|
|
||||||
musl can be built for the following CPU instruction set architecture
|
|
||||||
and ABI combinations:
|
|
||||||
|
|
||||||
* i386
|
|
||||||
* Minimum CPU model is actually 80486 unless kernel emulation of
|
|
||||||
the `cmpxchg` instruction is added
|
|
||||||
|
|
||||||
* x86_64
|
|
||||||
* ILP32 ABI (x32) is available as a separate arch but is still
|
|
||||||
experimental
|
|
||||||
|
|
||||||
* ARM
|
|
||||||
* EABI, standard or hard-float VFP variant
|
|
||||||
* Little-endian default; big-endian variants also supported
|
|
||||||
* Compiler toolchains only support armv4t and later
|
|
||||||
|
|
||||||
* AArch64
|
|
||||||
* Little-endian default; big-endian variants also supported
|
|
||||||
|
|
||||||
* MIPS
|
|
||||||
* ABI is o32, fp32/fpxx (except on r6 which is fp64)
|
|
||||||
* Big-endian default; little-endian variants also supported
|
|
||||||
* Default ABI variant uses FPU registers; alternate soft-float ABI
|
|
||||||
that does not use FPU registers or instructions is available
|
|
||||||
* MIPS2 or later, or kernel emulation of ll/sc (standard in Linux)
|
|
||||||
is required
|
|
||||||
* MIPS32r6, an incompatible ISA, is supported as a variant "mipsr6"
|
|
||||||
|
|
||||||
* MIPS64
|
|
||||||
* ABI is n64 (LP64) or n32 (ILP32)
|
|
||||||
* Big-endian default; little-endian variants also supported
|
|
||||||
* Default ABI variant uses FPU registers; alternate soft-float ABI
|
|
||||||
that does not use FPU registers or instructions is available
|
|
||||||
|
|
||||||
* PowerPC
|
|
||||||
* Compiler toolchain must provide 64-bit long double, not IBM
|
|
||||||
double-double or IEEE quad
|
|
||||||
* For dynamic linking, compiler toolchain must be configured for
|
|
||||||
"secure PLT" variant
|
|
||||||
|
|
||||||
* PowerPC64
|
|
||||||
* Both little and big endian variants are supported
|
|
||||||
* Compiler toolchain must provide 64-bit long double, not IBM
|
|
||||||
double-double or IEEE quad
|
|
||||||
* Compiler toolchain must use the new (ELFv2) ABI regardless of
|
|
||||||
whether it is for little or big endian
|
|
||||||
|
|
||||||
* S390X (64-bit S390)
|
|
||||||
|
|
||||||
* SuperH (SH)
|
|
||||||
* Standard ELF ABI or FDPIC ABI (shared-text without MMU)
|
|
||||||
* Little-endian by default; big-endian variant also supported
|
|
||||||
* Full FPU ABI or soft-float ABI is supported, but the
|
|
||||||
single-precision-only FPU ABI is not
|
|
||||||
|
|
||||||
* Microblaze
|
|
||||||
* Big-endian default; little-endian variants also supported
|
|
||||||
* Soft-float
|
|
||||||
* Requires support for lwx/swx instructions
|
|
||||||
|
|
||||||
* OpenRISC 1000 (or1k)
|
|
||||||
|
|
||||||
* RISC-V
|
|
||||||
* 32-bit and 64-bit
|
|
||||||
* Little endian
|
|
||||||
* Hard, soft, and hard-single/soft-double floating point ABIs
|
|
||||||
* Standard ELF; no shared-text NOMMU support
|
|
||||||
|
|
||||||
* LoongArch
|
|
||||||
* 64-bit ISA
|
|
||||||
* Hard, soft, and hard-single/soft-double floating point ABIs
|
|
||||||
|
|
||||||
|
|
||||||
|
STEP 3: Installation
|
||||||
|
|
||||||
Build and Installation Procedure
|
With appropriate privileges, run "make install".
|
||||||
--------------------------------
|
|
||||||
|
|
||||||
To build and install musl:
|
|
||||||
|
|
||||||
1. Run the provided configure script from the top-level source
|
|
||||||
directory, passing on its command line any desired options.
|
|
||||||
|
|
||||||
2. Run "make" to compile.
|
|
||||||
|
|
||||||
3. Run "make install" with appropriate privileges to write to the
|
|
||||||
target locations.
|
|
||||||
|
|
||||||
The configure script attempts to determine automatically the correct
|
|
||||||
target architecture based on the compiler being used. For some
|
|
||||||
compilers, this may not be possible. If detection fails or selects the
|
|
||||||
wrong architecture, you can provide an explicit selection on the
|
|
||||||
configure command line.
|
|
||||||
|
|
||||||
By default, configure installs to a prefix of "/usr/local/musl". This
|
|
||||||
differs from the behavior of most configure scripts, and is chosen
|
|
||||||
specifically to avoid clashing with libraries already present on the
|
|
||||||
system. DO NOT set the prefix to "/usr", "/usr/local", or "/" unless
|
|
||||||
you're upgrading libc on an existing musl-based system. Doing so will
|
|
||||||
break your existing system when you run "make install" and it may be
|
|
||||||
difficult to recover.
|
|
||||||
|
|
||||||
|
|
||||||
|
STEP 4: Using the gcc wrapper.
|
||||||
|
|
||||||
Notes on Dynamic Linking
|
musl comes with a script "musl-gcc" (installed in /usr/local/bin by
|
||||||
------------------------
|
default) that can be used to compile and link C programs against musl.
|
||||||
|
It requires a version of gcc with the -wrapper option (gcc 4.x should
|
||||||
If dynamic linking is enabled, one file needs to be installed outside
|
work). For example:
|
||||||
of the installation prefix: /lib/ld-musl-$ARCH.so.1. This is the
|
|
||||||
dynamic linker. Its pathname is hard-coded into all dynamic-linked
|
|
||||||
programs, so for the sake of being able to share binaries between
|
|
||||||
systems, a consistent location should be used everywhere. Note that
|
|
||||||
the same applies to glibc and its dynamic linker, which is named
|
|
||||||
/lib/ld-linux.so.2 on i386 systems.
|
|
||||||
|
|
||||||
If for some reason it is impossible to install the dynamic linker in
|
|
||||||
its standard location (for example, if you are installing without root
|
|
||||||
privileges), the --syslibdir option to configure can be used to
|
|
||||||
provide a different location
|
|
||||||
|
|
||||||
At runtime, the dynamic linker needs to know the paths to search for
|
|
||||||
shared libraries. You should create a text file named
|
|
||||||
/etc/ld-musl-$ARCH.path (where $ARCH matches the architecture name
|
|
||||||
used in the dynamic linker) containing a list of directories where you
|
|
||||||
want the dynamic linker to search for shared libraries, separated by
|
|
||||||
colons or newlines. If the dynamic linker has been installed in a
|
|
||||||
non-default location, the path file also needs to reside at that
|
|
||||||
location (../etc relative to the chosen syslibdir).
|
|
||||||
|
|
||||||
If you do not intend to use dynamic linking, you may disable it by
|
|
||||||
passing --disable-shared to configure; this also cuts the build time
|
|
||||||
in half.
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Checking for Successful Installation
|
|
||||||
------------------------------------
|
|
||||||
|
|
||||||
After installing, you should be able to use musl via the musl-gcc
|
|
||||||
wrapper. For example:
|
|
||||||
|
|
||||||
cat > hello.c <<EOF
|
cat > hello.c <<EOF
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
@ -183,14 +44,15 @@ int main()
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
EOF
|
EOF
|
||||||
/usr/local/musl/bin/musl-gcc hello.c
|
musl-gcc hello.c
|
||||||
./a.out
|
./a.out
|
||||||
|
|
||||||
To configure autoconf-based program to compile and link against musl,
|
For compiling programs that use autoconf, you'll need to configure
|
||||||
set the CC variable to musl-gcc when running configure, as in:
|
them with a command like this:
|
||||||
|
|
||||||
CC=musl-gcc ./configure ...
|
CC=musl-gcc ./configure
|
||||||
|
|
||||||
You will probably also want to use --prefix when building libraries to
|
Be aware that (at present) libraries linked against glibc are unlikely
|
||||||
ensure that they are installed under the musl prefix and not in the
|
to be usable, and the musl-gcc wrapper inhibits search of the system
|
||||||
main host system library directories.
|
library paths in any case. You'll need to compile any prerequisite
|
||||||
|
libraries (like ncurses, glib, etc.) yourself.
|
||||||
|
|
234
Makefile
234
Makefile
|
@ -8,230 +8,98 @@
|
||||||
# Do not make changes here.
|
# Do not make changes here.
|
||||||
#
|
#
|
||||||
|
|
||||||
srcdir = .
|
|
||||||
exec_prefix = /usr/local
|
exec_prefix = /usr/local
|
||||||
bindir = $(exec_prefix)/bin
|
bindir = $(exec_prefix)/bin
|
||||||
|
|
||||||
prefix = /usr/local/musl
|
prefix = /usr/local/musl
|
||||||
includedir = $(prefix)/include
|
includedir = $(prefix)/include
|
||||||
libdir = $(prefix)/lib
|
libdir = $(prefix)/lib
|
||||||
syslibdir = /lib
|
|
||||||
|
|
||||||
MALLOC_DIR = mallocng
|
SRCS = $(sort $(wildcard src/*/*.c))
|
||||||
SRC_DIRS = $(addprefix $(srcdir)/,src/* src/malloc/$(MALLOC_DIR) crt ldso $(COMPAT_SRC_DIRS))
|
OBJS = $(SRCS:.c=.o)
|
||||||
BASE_GLOBS = $(addsuffix /*.c,$(SRC_DIRS))
|
LOBJS = $(OBJS:.o=.lo)
|
||||||
ARCH_GLOBS = $(addsuffix /$(ARCH)/*.[csS],$(SRC_DIRS))
|
GENH = include/bits/alltypes.h
|
||||||
BASE_SRCS = $(sort $(wildcard $(BASE_GLOBS)))
|
|
||||||
ARCH_SRCS = $(sort $(wildcard $(ARCH_GLOBS)))
|
|
||||||
BASE_OBJS = $(patsubst $(srcdir)/%,%.o,$(basename $(BASE_SRCS)))
|
|
||||||
ARCH_OBJS = $(patsubst $(srcdir)/%,%.o,$(basename $(ARCH_SRCS)))
|
|
||||||
REPLACED_OBJS = $(sort $(subst /$(ARCH)/,/,$(ARCH_OBJS)))
|
|
||||||
ALL_OBJS = $(addprefix obj/, $(filter-out $(REPLACED_OBJS), $(sort $(BASE_OBJS) $(ARCH_OBJS))))
|
|
||||||
|
|
||||||
LIBC_OBJS = $(filter obj/src/%,$(ALL_OBJS)) $(filter obj/compat/%,$(ALL_OBJS))
|
|
||||||
LDSO_OBJS = $(filter obj/ldso/%,$(ALL_OBJS:%.o=%.lo))
|
|
||||||
CRT_OBJS = $(filter obj/crt/%,$(ALL_OBJS))
|
|
||||||
|
|
||||||
AOBJS = $(LIBC_OBJS)
|
|
||||||
LOBJS = $(LIBC_OBJS:.o=.lo)
|
|
||||||
GENH = obj/include/bits/alltypes.h obj/include/bits/syscall.h
|
|
||||||
GENH_INT = obj/src/internal/version.h
|
|
||||||
IMPH = $(addprefix $(srcdir)/, src/internal/stdio_impl.h src/internal/pthread_impl.h src/internal/locale_impl.h src/internal/libc.h)
|
|
||||||
|
|
||||||
LDFLAGS =
|
|
||||||
LDFLAGS_AUTO =
|
|
||||||
LIBCC = -lgcc
|
|
||||||
CPPFLAGS =
|
|
||||||
CFLAGS =
|
|
||||||
CFLAGS_AUTO = -Os -pipe
|
|
||||||
CFLAGS_C99FSE = -std=c99 -ffreestanding -nostdinc
|
|
||||||
|
|
||||||
CFLAGS_ALL = $(CFLAGS_C99FSE)
|
|
||||||
CFLAGS_ALL += -D_XOPEN_SOURCE=700 -I$(srcdir)/arch/$(ARCH) -I$(srcdir)/arch/generic -Iobj/src/internal -I$(srcdir)/src/include -I$(srcdir)/src/internal -Iobj/include -I$(srcdir)/include
|
|
||||||
CFLAGS_ALL += $(CPPFLAGS) $(CFLAGS_AUTO) $(CFLAGS)
|
|
||||||
|
|
||||||
LDFLAGS_ALL = $(LDFLAGS_AUTO) $(LDFLAGS)
|
|
||||||
|
|
||||||
|
CFLAGS = -Os -nostdinc -ffreestanding -std=c99 -D_XOPEN_SOURCE=700 -pipe
|
||||||
|
LDFLAGS = -nostdlib -shared -fPIC -Wl,-e,_start -Wl,-Bsymbolic-functions
|
||||||
|
INC = -I./include -I./src/internal -I./arch/$(ARCH)
|
||||||
|
PIC = -fPIC -O3
|
||||||
AR = $(CROSS_COMPILE)ar
|
AR = $(CROSS_COMPILE)ar
|
||||||
RANLIB = $(CROSS_COMPILE)ranlib
|
RANLIB = $(CROSS_COMPILE)ranlib
|
||||||
INSTALL = $(srcdir)/tools/install.sh
|
OBJCOPY = $(CROSS_COMPILE)objcopy
|
||||||
|
|
||||||
ARCH_INCLUDES = $(wildcard $(srcdir)/arch/$(ARCH)/bits/*.h)
|
ALL_INCLUDES = $(sort $(wildcard include/*.h include/*/*.h) $(GENH))
|
||||||
GENERIC_INCLUDES = $(wildcard $(srcdir)/arch/generic/bits/*.h)
|
|
||||||
INCLUDES = $(wildcard $(srcdir)/include/*.h $(srcdir)/include/*/*.h)
|
|
||||||
ALL_INCLUDES = $(sort $(INCLUDES:$(srcdir)/%=%) $(GENH:obj/%=%) $(ARCH_INCLUDES:$(srcdir)/arch/$(ARCH)/%=include/%) $(GENERIC_INCLUDES:$(srcdir)/arch/generic/%=include/%))
|
|
||||||
|
|
||||||
EMPTY_LIB_NAMES = m rt pthread crypt util xnet resolv dl
|
EMPTY_LIB_NAMES = m rt pthread crypt util xnet resolv dl
|
||||||
EMPTY_LIBS = $(EMPTY_LIB_NAMES:%=lib/lib%.a)
|
EMPTY_LIBS = $(EMPTY_LIB_NAMES:%=lib/lib%.a)
|
||||||
CRT_LIBS = $(addprefix lib/,$(notdir $(CRT_OBJS)))
|
CRT_LIBS = lib/crt1.o lib/crti.o lib/crtn.o
|
||||||
STATIC_LIBS = lib/libc.a
|
LIBC_LIBS = lib/libc.a
|
||||||
SHARED_LIBS = lib/libc.so
|
ALL_LIBS = $(LIBC_LIBS) $(CRT_LIBS) $(EMPTY_LIBS)
|
||||||
TOOL_LIBS = lib/musl-gcc.specs
|
|
||||||
ALL_LIBS = $(CRT_LIBS) $(STATIC_LIBS) $(SHARED_LIBS) $(EMPTY_LIBS) $(TOOL_LIBS)
|
|
||||||
ALL_TOOLS = obj/musl-gcc
|
|
||||||
|
|
||||||
WRAPCC_GCC = gcc
|
ALL_TOOLS = tools/musl-gcc
|
||||||
WRAPCC_CLANG = clang
|
|
||||||
|
|
||||||
LDSO_PATHNAME = $(syslibdir)/ld-musl-$(ARCH)$(SUBARCH).so.1
|
|
||||||
|
|
||||||
-include config.mak
|
-include config.mak
|
||||||
-include $(srcdir)/arch/$(ARCH)/arch.mak
|
|
||||||
|
|
||||||
ifeq ($(ARCH),)
|
|
||||||
|
|
||||||
all:
|
|
||||||
@echo "Please set ARCH in config.mak before running make."
|
|
||||||
@exit 1
|
|
||||||
|
|
||||||
else
|
|
||||||
|
|
||||||
all: $(ALL_LIBS) $(ALL_TOOLS)
|
all: $(ALL_LIBS) $(ALL_TOOLS)
|
||||||
|
|
||||||
OBJ_DIRS = $(sort $(patsubst %/,%,$(dir $(ALL_LIBS) $(ALL_TOOLS) $(ALL_OBJS) $(GENH) $(GENH_INT))) obj/include)
|
install: $(ALL_LIBS:lib/%=$(DESTDIR)$(libdir)/%) $(ALL_INCLUDES:include/%=$(DESTDIR)$(includedir)/%) $(ALL_TOOLS:tools/%=$(DESTDIR)$(bindir)/%)
|
||||||
|
|
||||||
$(ALL_LIBS) $(ALL_TOOLS) $(ALL_OBJS) $(ALL_OBJS:%.o=%.lo) $(GENH) $(GENH_INT): | $(OBJ_DIRS)
|
clean:
|
||||||
|
rm -f crt/*.o
|
||||||
|
rm -f $(OBJS)
|
||||||
|
rm -f $(LOBJS)
|
||||||
|
rm -f $(ALL_LIBS) lib/*.[ao] lib/*.so
|
||||||
|
rm -f $(ALL_TOOLS)
|
||||||
|
rm -f $(GENH)
|
||||||
|
rm -f include/bits
|
||||||
|
|
||||||
$(OBJ_DIRS):
|
include/bits:
|
||||||
mkdir -p $@
|
@test "$(ARCH)" || { echo "Please set ARCH in config.mak before running make." ; exit 1 ; }
|
||||||
|
ln -sf ../arch/$(ARCH)/bits $@
|
||||||
|
|
||||||
obj/include/bits/alltypes.h: $(srcdir)/arch/$(ARCH)/bits/alltypes.h.in $(srcdir)/include/alltypes.h.in $(srcdir)/tools/mkalltypes.sed
|
include/bits/alltypes.h.sh: include/bits
|
||||||
sed -f $(srcdir)/tools/mkalltypes.sed $(srcdir)/arch/$(ARCH)/bits/alltypes.h.in $(srcdir)/include/alltypes.h.in > $@
|
|
||||||
|
|
||||||
obj/include/bits/syscall.h: $(srcdir)/arch/$(ARCH)/bits/syscall.h.in
|
include/bits/alltypes.h: include/bits/alltypes.h.sh
|
||||||
cp $< $@
|
sh $< > $@
|
||||||
sed -n -e s/__NR_/SYS_/p < $< >> $@
|
|
||||||
|
|
||||||
obj/src/internal/version.h: $(wildcard $(srcdir)/VERSION $(srcdir)/.git)
|
%.o: $(ARCH)/%.s
|
||||||
printf '#define VERSION "%s"\n' "$$(cd $(srcdir); sh tools/version.sh)" > $@
|
$(CC) $(CFLAGS) $(INC) -c -o $@ $<
|
||||||
|
|
||||||
obj/src/internal/version.o obj/src/internal/version.lo: obj/src/internal/version.h
|
%.o: %.c $(GENH)
|
||||||
|
$(CC) $(CFLAGS) $(INC) -c -o $@ $<
|
||||||
|
|
||||||
obj/crt/rcrt1.o obj/ldso/dlstart.lo obj/ldso/dynlink.lo: $(srcdir)/src/internal/dynlink.h $(srcdir)/arch/$(ARCH)/reloc.h
|
%.lo: $(ARCH)/%.s
|
||||||
|
$(CC) $(CFLAGS) $(INC) $(PIC) -c -o $@ $<
|
||||||
|
|
||||||
obj/crt/crt1.o obj/crt/Scrt1.o obj/crt/rcrt1.o obj/ldso/dlstart.lo: $(srcdir)/arch/$(ARCH)/crt_arch.h
|
%.lo: %.c $(GENH)
|
||||||
|
$(CC) $(CFLAGS) $(INC) $(PIC) -c -o $@ $<
|
||||||
|
|
||||||
obj/crt/rcrt1.o: $(srcdir)/ldso/dlstart.c
|
lib/libc.so: $(LOBJS)
|
||||||
|
$(CC) $(LDFLAGS) -o $@ $(LOBJS) -lgcc
|
||||||
|
$(OBJCOPY) --weaken $@
|
||||||
|
|
||||||
obj/crt/Scrt1.o obj/crt/rcrt1.o: CFLAGS_ALL += -fPIC
|
lib/libc.a: $(OBJS)
|
||||||
|
|
||||||
OPTIMIZE_SRCS = $(wildcard $(OPTIMIZE_GLOBS:%=$(srcdir)/src/%))
|
|
||||||
$(OPTIMIZE_SRCS:$(srcdir)/%.c=obj/%.o) $(OPTIMIZE_SRCS:$(srcdir)/%.c=obj/%.lo): CFLAGS += -O3
|
|
||||||
|
|
||||||
MEMOPS_OBJS = $(filter %/memcpy.o %/memmove.o %/memcmp.o %/memset.o, $(LIBC_OBJS))
|
|
||||||
$(MEMOPS_OBJS) $(MEMOPS_OBJS:%.o=%.lo): CFLAGS_ALL += $(CFLAGS_MEMOPS)
|
|
||||||
|
|
||||||
NOSSP_OBJS = $(CRT_OBJS) $(LDSO_OBJS) $(filter \
|
|
||||||
%/__libc_start_main.o %/__init_tls.o %/__stack_chk_fail.o \
|
|
||||||
%/__set_thread_area.o %/memset.o %/memcpy.o \
|
|
||||||
, $(LIBC_OBJS))
|
|
||||||
$(NOSSP_OBJS) $(NOSSP_OBJS:%.o=%.lo): CFLAGS_ALL += $(CFLAGS_NOSSP)
|
|
||||||
|
|
||||||
$(CRT_OBJS): CFLAGS_ALL += -DCRT
|
|
||||||
|
|
||||||
$(LOBJS) $(LDSO_OBJS): CFLAGS_ALL += -fPIC
|
|
||||||
|
|
||||||
CC_CMD = $(CC) $(CFLAGS_ALL) -c -o $@ $<
|
|
||||||
|
|
||||||
# Choose invocation of assembler to be used
|
|
||||||
ifeq ($(ADD_CFI),yes)
|
|
||||||
AS_CMD = LC_ALL=C awk -f $(srcdir)/tools/add-cfi.common.awk -f $(srcdir)/tools/add-cfi.$(ARCH).awk $< | $(CC) $(CFLAGS_ALL) -x assembler -c -o $@ -
|
|
||||||
else
|
|
||||||
AS_CMD = $(CC_CMD)
|
|
||||||
endif
|
|
||||||
|
|
||||||
obj/%.o: $(srcdir)/%.s
|
|
||||||
$(AS_CMD)
|
|
||||||
|
|
||||||
obj/%.o: $(srcdir)/%.S
|
|
||||||
$(CC_CMD)
|
|
||||||
|
|
||||||
obj/%.o: $(srcdir)/%.c $(GENH) $(IMPH)
|
|
||||||
$(CC_CMD)
|
|
||||||
|
|
||||||
obj/%.lo: $(srcdir)/%.s
|
|
||||||
$(AS_CMD)
|
|
||||||
|
|
||||||
obj/%.lo: $(srcdir)/%.S
|
|
||||||
$(CC_CMD)
|
|
||||||
|
|
||||||
obj/%.lo: $(srcdir)/%.c $(GENH) $(IMPH)
|
|
||||||
$(CC_CMD)
|
|
||||||
|
|
||||||
lib/libc.so: $(LOBJS) $(LDSO_OBJS)
|
|
||||||
$(CC) $(CFLAGS_ALL) $(LDFLAGS_ALL) -nostdlib -shared \
|
|
||||||
-Wl,-e,_dlstart -o $@ $(LOBJS) $(LDSO_OBJS) $(LIBCC)
|
|
||||||
|
|
||||||
lib/libc.a: $(AOBJS)
|
|
||||||
rm -f $@
|
rm -f $@
|
||||||
$(AR) rc $@ $(AOBJS)
|
$(AR) rc $@ $(OBJS)
|
||||||
$(RANLIB) $@
|
$(RANLIB) $@
|
||||||
|
|
||||||
$(EMPTY_LIBS):
|
$(EMPTY_LIBS):
|
||||||
rm -f $@
|
rm -f $@
|
||||||
$(AR) rc $@
|
$(AR) rc $@
|
||||||
|
|
||||||
lib/%.o: obj/crt/$(ARCH)/%.o
|
lib/%.o: crt/%.o
|
||||||
cp $< $@
|
cp $< $@
|
||||||
|
|
||||||
lib/%.o: obj/crt/%.o
|
tools/musl-gcc: tools/gen-musl-gcc.sh config.mak
|
||||||
cp $< $@
|
sh $< "$(prefix)" > $@ || { rm -f $@ ; exit 1 ; }
|
||||||
|
|
||||||
lib/musl-gcc.specs: $(srcdir)/tools/musl-gcc.specs.sh config.mak
|
|
||||||
sh $< "$(includedir)" "$(libdir)" "$(LDSO_PATHNAME)" > $@
|
|
||||||
|
|
||||||
obj/musl-gcc: config.mak
|
|
||||||
printf '#!/bin/sh\nexec "$${REALGCC:-$(WRAPCC_GCC)}" "$$@" -specs "%s/musl-gcc.specs"\n' "$(libdir)" > $@
|
|
||||||
chmod +x $@
|
chmod +x $@
|
||||||
|
|
||||||
obj/%-clang: $(srcdir)/tools/%-clang.in config.mak
|
$(DESTDIR)$(bindir)/%: tools/%
|
||||||
sed -e 's!@CC@!$(WRAPCC_CLANG)!g' -e 's!@PREFIX@!$(prefix)!g' -e 's!@INCDIR@!$(includedir)!g' -e 's!@LIBDIR@!$(libdir)!g' -e 's!@LDSO@!$(LDSO_PATHNAME)!g' $< > $@
|
install -D $< $@
|
||||||
chmod +x $@
|
|
||||||
|
|
||||||
$(DESTDIR)$(bindir)/%: obj/%
|
$(DESTDIR)$(prefix)/%: %
|
||||||
$(INSTALL) -D $< $@
|
install -D -m 644 $< $@
|
||||||
|
|
||||||
$(DESTDIR)$(libdir)/%.so: lib/%.so
|
.PRECIOUS: $(CRT_LIBS:lib/%=crt/%)
|
||||||
$(INSTALL) -D -m 755 $< $@
|
|
||||||
|
|
||||||
$(DESTDIR)$(libdir)/%: lib/%
|
.PHONY: all clean install
|
||||||
$(INSTALL) -D -m 644 $< $@
|
|
||||||
|
|
||||||
$(DESTDIR)$(includedir)/bits/%: $(srcdir)/arch/$(ARCH)/bits/%
|
|
||||||
$(INSTALL) -D -m 644 $< $@
|
|
||||||
|
|
||||||
$(DESTDIR)$(includedir)/bits/%: $(srcdir)/arch/generic/bits/%
|
|
||||||
$(INSTALL) -D -m 644 $< $@
|
|
||||||
|
|
||||||
$(DESTDIR)$(includedir)/bits/%: obj/include/bits/%
|
|
||||||
$(INSTALL) -D -m 644 $< $@
|
|
||||||
|
|
||||||
$(DESTDIR)$(includedir)/%: $(srcdir)/include/%
|
|
||||||
$(INSTALL) -D -m 644 $< $@
|
|
||||||
|
|
||||||
$(DESTDIR)$(LDSO_PATHNAME): $(DESTDIR)$(libdir)/libc.so
|
|
||||||
$(INSTALL) -D -l $(libdir)/libc.so $@ || true
|
|
||||||
|
|
||||||
install-libs: $(ALL_LIBS:lib/%=$(DESTDIR)$(libdir)/%) $(if $(SHARED_LIBS),$(DESTDIR)$(LDSO_PATHNAME),)
|
|
||||||
|
|
||||||
install-headers: $(ALL_INCLUDES:include/%=$(DESTDIR)$(includedir)/%)
|
|
||||||
|
|
||||||
install-tools: $(ALL_TOOLS:obj/%=$(DESTDIR)$(bindir)/%)
|
|
||||||
|
|
||||||
install: install-libs install-headers install-tools
|
|
||||||
|
|
||||||
musl-git-%.tar.gz: .git
|
|
||||||
git --git-dir=$(srcdir)/.git archive --format=tar.gz --prefix=$(patsubst %.tar.gz,%,$@)/ -o $@ $(patsubst musl-git-%.tar.gz,%,$@)
|
|
||||||
|
|
||||||
musl-%.tar.gz: .git
|
|
||||||
git --git-dir=$(srcdir)/.git archive --format=tar.gz --prefix=$(patsubst %.tar.gz,%,$@)/ -o $@ v$(patsubst musl-%.tar.gz,%,$@)
|
|
||||||
|
|
||||||
endif
|
|
||||||
|
|
||||||
clean:
|
|
||||||
rm -rf obj lib
|
|
||||||
|
|
||||||
distclean: clean
|
|
||||||
rm -f config.mak
|
|
||||||
|
|
||||||
.PHONY: all clean install install-libs install-headers install-tools
|
|
||||||
|
|
57
README
57
README
|
@ -1,23 +1,44 @@
|
||||||
|
|
||||||
musl libc
|
musl libc - a new standard library to power a new generation of
|
||||||
|
Linux-based devices. musl is lightweight, fast, simple, free, and
|
||||||
|
strives to be correct in the sense of standards-conformance and
|
||||||
|
safety.
|
||||||
|
|
||||||
musl, pronounced like the word "mussel", is an MIT-licensed
|
musl is an alternative to glibc, eglibc, uClibc, dietlibc, and klibc.
|
||||||
implementation of the standard C library targetting the Linux syscall
|
For reasons why one might prefer musl, please see the FAQ and libc
|
||||||
API, suitable for use in a wide range of deployment environments. musl
|
comparison chart on the project website,
|
||||||
offers efficient static and dynamic linking support, lightweight code
|
|
||||||
and low runtime overhead, strong fail-safe guarantees under correct
|
|
||||||
usage, and correctness in the sense of standards conformance and
|
|
||||||
safety. musl is built on the principle that these goals are best
|
|
||||||
achieved through simple code that is easy to understand and maintain.
|
|
||||||
|
|
||||||
The 1.1 release series for musl features coverage for all interfaces
|
http://www.etalabs.net/musl/
|
||||||
defined in ISO C99 and POSIX 2008 base, along with a number of
|
|
||||||
non-standardized interfaces for compatibility with Linux, BSD, and
|
For installation instructions, see the INSTALL file.
|
||||||
glibc functionality.
|
|
||||||
|
Please refer to the COPYRIGHT file for details on the copyright status
|
||||||
|
of code included in musl, and the COPYING file for the license (LGPL)
|
||||||
|
under which the library as a whole is distributed.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Greetings libc hackers!
|
||||||
|
|
||||||
|
This package is an _alpha_ release of musl, intended for the curious
|
||||||
|
and the adventurous. While it can be used to build a complete small
|
||||||
|
Linux system (musl is self-hosted on the system I use to develop it),
|
||||||
|
at this point doing so requires a lot of manual effort. Nonetheless, I
|
||||||
|
hope low-level Linux enthusiasts will try out building some compact
|
||||||
|
static binaries with musl using the provided gcc wrapper (which allows
|
||||||
|
you to link programs with musl on a "standard" glibc Linux system),
|
||||||
|
find whatever embarassing bugs I've let slip through, and provide
|
||||||
|
feedback on issues encountered building various software against musl.
|
||||||
|
|
||||||
|
For bug reports, support requests, or to get involved in development,
|
||||||
|
please visit #musl on Freenode IRC or subscribe to the musl mailing
|
||||||
|
list by sending a blank email to musl-subscribe AT lists DOT openwall
|
||||||
|
DOT com.
|
||||||
|
|
||||||
|
Thank you for trying out musl.
|
||||||
|
|
||||||
|
Cheers,
|
||||||
|
|
||||||
|
Rich Felker / dalias
|
||||||
|
|
||||||
For basic installation instructions, see the included INSTALL file.
|
|
||||||
Information on full musl-targeted compiler toolchains, system
|
|
||||||
bootstrapping, and Linux distributions built on musl can be found on
|
|
||||||
the project website:
|
|
||||||
|
|
||||||
http://www.musl-libc.org/
|
|
||||||
|
|
1
VERSION
1
VERSION
|
@ -1 +0,0 @@
|
||||||
1.2.5
|
|
|
@ -1,82 +0,0 @@
|
||||||
#define a_ll a_ll
|
|
||||||
static inline int a_ll(volatile int *p)
|
|
||||||
{
|
|
||||||
int v;
|
|
||||||
__asm__ __volatile__ ("ldaxr %w0,%1" : "=r"(v) : "Q"(*p));
|
|
||||||
return v;
|
|
||||||
}
|
|
||||||
|
|
||||||
#define a_sc a_sc
|
|
||||||
static inline int a_sc(volatile int *p, int v)
|
|
||||||
{
|
|
||||||
int r;
|
|
||||||
__asm__ __volatile__ ("stlxr %w0,%w2,%1" : "=&r"(r), "=Q"(*p) : "r"(v) : "memory");
|
|
||||||
return !r;
|
|
||||||
}
|
|
||||||
|
|
||||||
#define a_barrier a_barrier
|
|
||||||
static inline void a_barrier()
|
|
||||||
{
|
|
||||||
__asm__ __volatile__ ("dmb ish" : : : "memory");
|
|
||||||
}
|
|
||||||
|
|
||||||
#define a_cas a_cas
|
|
||||||
static inline int a_cas(volatile int *p, int t, int s)
|
|
||||||
{
|
|
||||||
int old;
|
|
||||||
do {
|
|
||||||
old = a_ll(p);
|
|
||||||
if (old != t) {
|
|
||||||
a_barrier();
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
} while (!a_sc(p, s));
|
|
||||||
return old;
|
|
||||||
}
|
|
||||||
|
|
||||||
#define a_ll_p a_ll_p
|
|
||||||
static inline void *a_ll_p(volatile void *p)
|
|
||||||
{
|
|
||||||
void *v;
|
|
||||||
__asm__ __volatile__ ("ldaxr %0, %1" : "=r"(v) : "Q"(*(void *volatile *)p));
|
|
||||||
return v;
|
|
||||||
}
|
|
||||||
|
|
||||||
#define a_sc_p a_sc_p
|
|
||||||
static inline int a_sc_p(volatile int *p, void *v)
|
|
||||||
{
|
|
||||||
int r;
|
|
||||||
__asm__ __volatile__ ("stlxr %w0,%2,%1" : "=&r"(r), "=Q"(*(void *volatile *)p) : "r"(v) : "memory");
|
|
||||||
return !r;
|
|
||||||
}
|
|
||||||
|
|
||||||
#define a_cas_p a_cas_p
|
|
||||||
static inline void *a_cas_p(volatile void *p, void *t, void *s)
|
|
||||||
{
|
|
||||||
void *old;
|
|
||||||
do {
|
|
||||||
old = a_ll_p(p);
|
|
||||||
if (old != t) {
|
|
||||||
a_barrier();
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
} while (!a_sc_p(p, s));
|
|
||||||
return old;
|
|
||||||
}
|
|
||||||
|
|
||||||
#define a_ctz_64 a_ctz_64
|
|
||||||
static inline int a_ctz_64(uint64_t x)
|
|
||||||
{
|
|
||||||
__asm__(
|
|
||||||
" rbit %0, %1\n"
|
|
||||||
" clz %0, %0\n"
|
|
||||||
: "=r"(x) : "r"(x));
|
|
||||||
return x;
|
|
||||||
}
|
|
||||||
|
|
||||||
#define a_clz_64 a_clz_64
|
|
||||||
static inline int a_clz_64(uint64_t x)
|
|
||||||
{
|
|
||||||
__asm__("clz %0, %1" : "=r"(x) : "r"(x));
|
|
||||||
return x;
|
|
||||||
}
|
|
|
@ -1,24 +0,0 @@
|
||||||
#define _Addr long
|
|
||||||
#define _Int64 long
|
|
||||||
#define _Reg long
|
|
||||||
|
|
||||||
#if __AARCH64EB__
|
|
||||||
#define __BYTE_ORDER 4321
|
|
||||||
#else
|
|
||||||
#define __BYTE_ORDER 1234
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#define __LONG_MAX 0x7fffffffffffffffL
|
|
||||||
|
|
||||||
#ifndef __cplusplus
|
|
||||||
TYPEDEF unsigned wchar_t;
|
|
||||||
#endif
|
|
||||||
TYPEDEF unsigned wint_t;
|
|
||||||
|
|
||||||
TYPEDEF int blksize_t;
|
|
||||||
TYPEDEF unsigned int nlink_t;
|
|
||||||
|
|
||||||
TYPEDEF float float_t;
|
|
||||||
TYPEDEF double double_t;
|
|
||||||
|
|
||||||
TYPEDEF struct { long long __ll; long double __ld; } max_align_t;
|
|
|
@ -1,38 +0,0 @@
|
||||||
#define O_CREAT 0100
|
|
||||||
#define O_EXCL 0200
|
|
||||||
#define O_NOCTTY 0400
|
|
||||||
#define O_TRUNC 01000
|
|
||||||
#define O_APPEND 02000
|
|
||||||
#define O_NONBLOCK 04000
|
|
||||||
#define O_DSYNC 010000
|
|
||||||
#define O_SYNC 04010000
|
|
||||||
#define O_RSYNC 04010000
|
|
||||||
#define O_DIRECTORY 040000
|
|
||||||
#define O_NOFOLLOW 0100000
|
|
||||||
#define O_CLOEXEC 02000000
|
|
||||||
|
|
||||||
#define O_ASYNC 020000
|
|
||||||
#define O_DIRECT 0200000
|
|
||||||
#define O_LARGEFILE 0400000
|
|
||||||
#define O_NOATIME 01000000
|
|
||||||
#define O_PATH 010000000
|
|
||||||
#define O_TMPFILE 020040000
|
|
||||||
#define O_NDELAY O_NONBLOCK
|
|
||||||
|
|
||||||
#define F_DUPFD 0
|
|
||||||
#define F_GETFD 1
|
|
||||||
#define F_SETFD 2
|
|
||||||
#define F_GETFL 3
|
|
||||||
#define F_SETFL 4
|
|
||||||
#define F_GETLK 5
|
|
||||||
#define F_SETLK 6
|
|
||||||
#define F_SETLKW 7
|
|
||||||
#define F_SETOWN 8
|
|
||||||
#define F_GETOWN 9
|
|
||||||
#define F_SETSIG 10
|
|
||||||
#define F_GETSIG 11
|
|
||||||
|
|
||||||
#define F_SETOWN_EX 15
|
|
||||||
#define F_GETOWN_EX 16
|
|
||||||
|
|
||||||
#define F_GETOWNER_UIDS 17
|
|
|
@ -1,19 +0,0 @@
|
||||||
#define FE_INVALID 1
|
|
||||||
#define FE_DIVBYZERO 2
|
|
||||||
#define FE_OVERFLOW 4
|
|
||||||
#define FE_UNDERFLOW 8
|
|
||||||
#define FE_INEXACT 16
|
|
||||||
#define FE_ALL_EXCEPT 31
|
|
||||||
#define FE_TONEAREST 0
|
|
||||||
#define FE_DOWNWARD 0x800000
|
|
||||||
#define FE_UPWARD 0x400000
|
|
||||||
#define FE_TOWARDZERO 0xc00000
|
|
||||||
|
|
||||||
typedef unsigned int fexcept_t;
|
|
||||||
|
|
||||||
typedef struct {
|
|
||||||
unsigned int __fpcr;
|
|
||||||
unsigned int __fpsr;
|
|
||||||
} fenv_t;
|
|
||||||
|
|
||||||
#define FE_DFL_ENV ((const fenv_t *) -1)
|
|
|
@ -1,16 +0,0 @@
|
||||||
#define FLT_EVAL_METHOD 0
|
|
||||||
|
|
||||||
#define LDBL_TRUE_MIN 6.47517511943802511092443895822764655e-4966L
|
|
||||||
#define LDBL_MIN 3.36210314311209350626267781732175260e-4932L
|
|
||||||
#define LDBL_MAX 1.18973149535723176508575932662800702e+4932L
|
|
||||||
#define LDBL_EPSILON 1.92592994438723585305597794258492732e-34L
|
|
||||||
|
|
||||||
#define LDBL_MANT_DIG 113
|
|
||||||
#define LDBL_MIN_EXP (-16381)
|
|
||||||
#define LDBL_MAX_EXP 16384
|
|
||||||
|
|
||||||
#define LDBL_DIG 33
|
|
||||||
#define LDBL_MIN_10_EXP (-4931)
|
|
||||||
#define LDBL_MAX_10_EXP 4932
|
|
||||||
|
|
||||||
#define DECIMAL_DIG 36
|
|
|
@ -1,52 +0,0 @@
|
||||||
#define HWCAP_FP (1 << 0)
|
|
||||||
#define HWCAP_ASIMD (1 << 1)
|
|
||||||
#define HWCAP_EVTSTRM (1 << 2)
|
|
||||||
#define HWCAP_AES (1 << 3)
|
|
||||||
#define HWCAP_PMULL (1 << 4)
|
|
||||||
#define HWCAP_SHA1 (1 << 5)
|
|
||||||
#define HWCAP_SHA2 (1 << 6)
|
|
||||||
#define HWCAP_CRC32 (1 << 7)
|
|
||||||
#define HWCAP_ATOMICS (1 << 8)
|
|
||||||
#define HWCAP_FPHP (1 << 9)
|
|
||||||
#define HWCAP_ASIMDHP (1 << 10)
|
|
||||||
#define HWCAP_CPUID (1 << 11)
|
|
||||||
#define HWCAP_ASIMDRDM (1 << 12)
|
|
||||||
#define HWCAP_JSCVT (1 << 13)
|
|
||||||
#define HWCAP_FCMA (1 << 14)
|
|
||||||
#define HWCAP_LRCPC (1 << 15)
|
|
||||||
#define HWCAP_DCPOP (1 << 16)
|
|
||||||
#define HWCAP_SHA3 (1 << 17)
|
|
||||||
#define HWCAP_SM3 (1 << 18)
|
|
||||||
#define HWCAP_SM4 (1 << 19)
|
|
||||||
#define HWCAP_ASIMDDP (1 << 20)
|
|
||||||
#define HWCAP_SHA512 (1 << 21)
|
|
||||||
#define HWCAP_SVE (1 << 22)
|
|
||||||
#define HWCAP_ASIMDFHM (1 << 23)
|
|
||||||
#define HWCAP_DIT (1 << 24)
|
|
||||||
#define HWCAP_USCAT (1 << 25)
|
|
||||||
#define HWCAP_ILRCPC (1 << 26)
|
|
||||||
#define HWCAP_FLAGM (1 << 27)
|
|
||||||
#define HWCAP_SSBS (1 << 28)
|
|
||||||
#define HWCAP_SB (1 << 29)
|
|
||||||
#define HWCAP_PACA (1 << 30)
|
|
||||||
#define HWCAP_PACG (1UL << 31)
|
|
||||||
|
|
||||||
#define HWCAP2_DCPODP (1 << 0)
|
|
||||||
#define HWCAP2_SVE2 (1 << 1)
|
|
||||||
#define HWCAP2_SVEAES (1 << 2)
|
|
||||||
#define HWCAP2_SVEPMULL (1 << 3)
|
|
||||||
#define HWCAP2_SVEBITPERM (1 << 4)
|
|
||||||
#define HWCAP2_SVESHA3 (1 << 5)
|
|
||||||
#define HWCAP2_SVESM4 (1 << 6)
|
|
||||||
#define HWCAP2_FLAGM2 (1 << 7)
|
|
||||||
#define HWCAP2_FRINT (1 << 8)
|
|
||||||
#define HWCAP2_SVEI8MM (1 << 9)
|
|
||||||
#define HWCAP2_SVEF32MM (1 << 10)
|
|
||||||
#define HWCAP2_SVEF64MM (1 << 11)
|
|
||||||
#define HWCAP2_SVEBF16 (1 << 12)
|
|
||||||
#define HWCAP2_I8MM (1 << 13)
|
|
||||||
#define HWCAP2_BF16 (1 << 14)
|
|
||||||
#define HWCAP2_DGH (1 << 15)
|
|
||||||
#define HWCAP2_RNG (1 << 16)
|
|
||||||
#define HWCAP2_BTI (1 << 17)
|
|
||||||
#define HWCAP2_MTE (1 << 18)
|
|
|
@ -1,2 +0,0 @@
|
||||||
#define PROT_BTI 0x10
|
|
||||||
#define PROT_MTE 0x20
|
|
|
@ -1 +0,0 @@
|
||||||
typedef unsigned long __jmp_buf[22];
|
|
|
@ -1,153 +0,0 @@
|
||||||
#if defined(_POSIX_SOURCE) || defined(_POSIX_C_SOURCE) \
|
|
||||||
|| defined(_XOPEN_SOURCE) || defined(_GNU_SOURCE) || defined(_BSD_SOURCE)
|
|
||||||
|
|
||||||
#if defined(_XOPEN_SOURCE) || defined(_GNU_SOURCE) || defined(_BSD_SOURCE)
|
|
||||||
#define MINSIGSTKSZ 6144
|
|
||||||
#define SIGSTKSZ 12288
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if defined(_GNU_SOURCE) || defined(_BSD_SOURCE)
|
|
||||||
typedef unsigned long greg_t;
|
|
||||||
typedef unsigned long gregset_t[34];
|
|
||||||
|
|
||||||
typedef struct {
|
|
||||||
__uint128_t vregs[32];
|
|
||||||
unsigned int fpsr;
|
|
||||||
unsigned int fpcr;
|
|
||||||
} fpregset_t;
|
|
||||||
typedef struct sigcontext {
|
|
||||||
unsigned long fault_address;
|
|
||||||
unsigned long regs[31];
|
|
||||||
unsigned long sp, pc, pstate;
|
|
||||||
long double __reserved[256];
|
|
||||||
} mcontext_t;
|
|
||||||
|
|
||||||
#define FPSIMD_MAGIC 0x46508001
|
|
||||||
#define ESR_MAGIC 0x45535201
|
|
||||||
#define EXTRA_MAGIC 0x45585401
|
|
||||||
#define SVE_MAGIC 0x53564501
|
|
||||||
struct _aarch64_ctx {
|
|
||||||
unsigned int magic;
|
|
||||||
unsigned int size;
|
|
||||||
};
|
|
||||||
struct fpsimd_context {
|
|
||||||
struct _aarch64_ctx head;
|
|
||||||
unsigned int fpsr;
|
|
||||||
unsigned int fpcr;
|
|
||||||
__uint128_t vregs[32];
|
|
||||||
};
|
|
||||||
struct esr_context {
|
|
||||||
struct _aarch64_ctx head;
|
|
||||||
unsigned long esr;
|
|
||||||
};
|
|
||||||
struct extra_context {
|
|
||||||
struct _aarch64_ctx head;
|
|
||||||
unsigned long datap;
|
|
||||||
unsigned int size;
|
|
||||||
unsigned int __reserved[3];
|
|
||||||
};
|
|
||||||
struct sve_context {
|
|
||||||
struct _aarch64_ctx head;
|
|
||||||
unsigned short vl;
|
|
||||||
unsigned short __reserved[3];
|
|
||||||
};
|
|
||||||
#define SVE_VQ_BYTES 16
|
|
||||||
#define SVE_VQ_MIN 1
|
|
||||||
#define SVE_VQ_MAX 512
|
|
||||||
#define SVE_VL_MIN (SVE_VQ_MIN * SVE_VQ_BYTES)
|
|
||||||
#define SVE_VL_MAX (SVE_VQ_MAX * SVE_VQ_BYTES)
|
|
||||||
#define SVE_NUM_ZREGS 32
|
|
||||||
#define SVE_NUM_PREGS 16
|
|
||||||
#define sve_vl_valid(vl) \
|
|
||||||
((vl) % SVE_VQ_BYTES == 0 && (vl) >= SVE_VL_MIN && (vl) <= SVE_VL_MAX)
|
|
||||||
#define sve_vq_from_vl(vl) ((vl) / SVE_VQ_BYTES)
|
|
||||||
#define sve_vl_from_vq(vq) ((vq) * SVE_VQ_BYTES)
|
|
||||||
#define SVE_SIG_ZREG_SIZE(vq) ((unsigned)(vq) * SVE_VQ_BYTES)
|
|
||||||
#define SVE_SIG_PREG_SIZE(vq) ((unsigned)(vq) * (SVE_VQ_BYTES / 8))
|
|
||||||
#define SVE_SIG_FFR_SIZE(vq) SVE_SIG_PREG_SIZE(vq)
|
|
||||||
#define SVE_SIG_REGS_OFFSET \
|
|
||||||
((sizeof(struct sve_context) + (SVE_VQ_BYTES - 1)) \
|
|
||||||
/ SVE_VQ_BYTES * SVE_VQ_BYTES)
|
|
||||||
#define SVE_SIG_ZREGS_OFFSET SVE_SIG_REGS_OFFSET
|
|
||||||
#define SVE_SIG_ZREG_OFFSET(vq, n) \
|
|
||||||
(SVE_SIG_ZREGS_OFFSET + SVE_SIG_ZREG_SIZE(vq) * (n))
|
|
||||||
#define SVE_SIG_ZREGS_SIZE(vq) \
|
|
||||||
(SVE_SIG_ZREG_OFFSET(vq, SVE_NUM_ZREGS) - SVE_SIG_ZREGS_OFFSET)
|
|
||||||
#define SVE_SIG_PREGS_OFFSET(vq) \
|
|
||||||
(SVE_SIG_ZREGS_OFFSET + SVE_SIG_ZREGS_SIZE(vq))
|
|
||||||
#define SVE_SIG_PREG_OFFSET(vq, n) \
|
|
||||||
(SVE_SIG_PREGS_OFFSET(vq) + SVE_SIG_PREG_SIZE(vq) * (n))
|
|
||||||
#define SVE_SIG_PREGS_SIZE(vq) \
|
|
||||||
(SVE_SIG_PREG_OFFSET(vq, SVE_NUM_PREGS) - SVE_SIG_PREGS_OFFSET(vq))
|
|
||||||
#define SVE_SIG_FFR_OFFSET(vq) \
|
|
||||||
(SVE_SIG_PREGS_OFFSET(vq) + SVE_SIG_PREGS_SIZE(vq))
|
|
||||||
#define SVE_SIG_REGS_SIZE(vq) \
|
|
||||||
(SVE_SIG_FFR_OFFSET(vq) + SVE_SIG_FFR_SIZE(vq) - SVE_SIG_REGS_OFFSET)
|
|
||||||
#define SVE_SIG_CONTEXT_SIZE(vq) (SVE_SIG_REGS_OFFSET + SVE_SIG_REGS_SIZE(vq))
|
|
||||||
#else
|
|
||||||
typedef struct {
|
|
||||||
long double __regs[18+256];
|
|
||||||
} mcontext_t;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
struct sigaltstack {
|
|
||||||
void *ss_sp;
|
|
||||||
int ss_flags;
|
|
||||||
size_t ss_size;
|
|
||||||
};
|
|
||||||
|
|
||||||
typedef struct __ucontext {
|
|
||||||
unsigned long uc_flags;
|
|
||||||
struct __ucontext *uc_link;
|
|
||||||
stack_t uc_stack;
|
|
||||||
sigset_t uc_sigmask;
|
|
||||||
mcontext_t uc_mcontext;
|
|
||||||
} ucontext_t;
|
|
||||||
|
|
||||||
#define SA_NOCLDSTOP 1
|
|
||||||
#define SA_NOCLDWAIT 2
|
|
||||||
#define SA_SIGINFO 4
|
|
||||||
#define SA_ONSTACK 0x08000000
|
|
||||||
#define SA_RESTART 0x10000000
|
|
||||||
#define SA_NODEFER 0x40000000
|
|
||||||
#define SA_RESETHAND 0x80000000
|
|
||||||
#define SA_RESTORER 0x04000000
|
|
||||||
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#define SIGHUP 1
|
|
||||||
#define SIGINT 2
|
|
||||||
#define SIGQUIT 3
|
|
||||||
#define SIGILL 4
|
|
||||||
#define SIGTRAP 5
|
|
||||||
#define SIGABRT 6
|
|
||||||
#define SIGIOT SIGABRT
|
|
||||||
#define SIGBUS 7
|
|
||||||
#define SIGFPE 8
|
|
||||||
#define SIGKILL 9
|
|
||||||
#define SIGUSR1 10
|
|
||||||
#define SIGSEGV 11
|
|
||||||
#define SIGUSR2 12
|
|
||||||
#define SIGPIPE 13
|
|
||||||
#define SIGALRM 14
|
|
||||||
#define SIGTERM 15
|
|
||||||
#define SIGSTKFLT 16
|
|
||||||
#define SIGCHLD 17
|
|
||||||
#define SIGCONT 18
|
|
||||||
#define SIGSTOP 19
|
|
||||||
#define SIGTSTP 20
|
|
||||||
#define SIGTTIN 21
|
|
||||||
#define SIGTTOU 22
|
|
||||||
#define SIGURG 23
|
|
||||||
#define SIGXCPU 24
|
|
||||||
#define SIGXFSZ 25
|
|
||||||
#define SIGVTALRM 26
|
|
||||||
#define SIGPROF 27
|
|
||||||
#define SIGWINCH 28
|
|
||||||
#define SIGIO 29
|
|
||||||
#define SIGPOLL 29
|
|
||||||
#define SIGPWR 30
|
|
||||||
#define SIGSYS 31
|
|
||||||
#define SIGUNUSED SIGSYS
|
|
||||||
|
|
||||||
#define _NSIG 65
|
|
|
@ -1,307 +0,0 @@
|
||||||
#define __NR_io_setup 0
|
|
||||||
#define __NR_io_destroy 1
|
|
||||||
#define __NR_io_submit 2
|
|
||||||
#define __NR_io_cancel 3
|
|
||||||
#define __NR_io_getevents 4
|
|
||||||
#define __NR_setxattr 5
|
|
||||||
#define __NR_lsetxattr 6
|
|
||||||
#define __NR_fsetxattr 7
|
|
||||||
#define __NR_getxattr 8
|
|
||||||
#define __NR_lgetxattr 9
|
|
||||||
#define __NR_fgetxattr 10
|
|
||||||
#define __NR_listxattr 11
|
|
||||||
#define __NR_llistxattr 12
|
|
||||||
#define __NR_flistxattr 13
|
|
||||||
#define __NR_removexattr 14
|
|
||||||
#define __NR_lremovexattr 15
|
|
||||||
#define __NR_fremovexattr 16
|
|
||||||
#define __NR_getcwd 17
|
|
||||||
#define __NR_lookup_dcookie 18
|
|
||||||
#define __NR_eventfd2 19
|
|
||||||
#define __NR_epoll_create1 20
|
|
||||||
#define __NR_epoll_ctl 21
|
|
||||||
#define __NR_epoll_pwait 22
|
|
||||||
#define __NR_dup 23
|
|
||||||
#define __NR_dup3 24
|
|
||||||
#define __NR_fcntl 25
|
|
||||||
#define __NR_inotify_init1 26
|
|
||||||
#define __NR_inotify_add_watch 27
|
|
||||||
#define __NR_inotify_rm_watch 28
|
|
||||||
#define __NR_ioctl 29
|
|
||||||
#define __NR_ioprio_set 30
|
|
||||||
#define __NR_ioprio_get 31
|
|
||||||
#define __NR_flock 32
|
|
||||||
#define __NR_mknodat 33
|
|
||||||
#define __NR_mkdirat 34
|
|
||||||
#define __NR_unlinkat 35
|
|
||||||
#define __NR_symlinkat 36
|
|
||||||
#define __NR_linkat 37
|
|
||||||
#define __NR_renameat 38
|
|
||||||
#define __NR_umount2 39
|
|
||||||
#define __NR_mount 40
|
|
||||||
#define __NR_pivot_root 41
|
|
||||||
#define __NR_nfsservctl 42
|
|
||||||
#define __NR_statfs 43
|
|
||||||
#define __NR_fstatfs 44
|
|
||||||
#define __NR_truncate 45
|
|
||||||
#define __NR_ftruncate 46
|
|
||||||
#define __NR_fallocate 47
|
|
||||||
#define __NR_faccessat 48
|
|
||||||
#define __NR_chdir 49
|
|
||||||
#define __NR_fchdir 50
|
|
||||||
#define __NR_chroot 51
|
|
||||||
#define __NR_fchmod 52
|
|
||||||
#define __NR_fchmodat 53
|
|
||||||
#define __NR_fchownat 54
|
|
||||||
#define __NR_fchown 55
|
|
||||||
#define __NR_openat 56
|
|
||||||
#define __NR_close 57
|
|
||||||
#define __NR_vhangup 58
|
|
||||||
#define __NR_pipe2 59
|
|
||||||
#define __NR_quotactl 60
|
|
||||||
#define __NR_getdents64 61
|
|
||||||
#define __NR_lseek 62
|
|
||||||
#define __NR_read 63
|
|
||||||
#define __NR_write 64
|
|
||||||
#define __NR_readv 65
|
|
||||||
#define __NR_writev 66
|
|
||||||
#define __NR_pread64 67
|
|
||||||
#define __NR_pwrite64 68
|
|
||||||
#define __NR_preadv 69
|
|
||||||
#define __NR_pwritev 70
|
|
||||||
#define __NR_sendfile 71
|
|
||||||
#define __NR_pselect6 72
|
|
||||||
#define __NR_ppoll 73
|
|
||||||
#define __NR_signalfd4 74
|
|
||||||
#define __NR_vmsplice 75
|
|
||||||
#define __NR_splice 76
|
|
||||||
#define __NR_tee 77
|
|
||||||
#define __NR_readlinkat 78
|
|
||||||
#define __NR_newfstatat 79
|
|
||||||
#define __NR_fstat 80
|
|
||||||
#define __NR_sync 81
|
|
||||||
#define __NR_fsync 82
|
|
||||||
#define __NR_fdatasync 83
|
|
||||||
#define __NR_sync_file_range 84
|
|
||||||
#define __NR_timerfd_create 85
|
|
||||||
#define __NR_timerfd_settime 86
|
|
||||||
#define __NR_timerfd_gettime 87
|
|
||||||
#define __NR_utimensat 88
|
|
||||||
#define __NR_acct 89
|
|
||||||
#define __NR_capget 90
|
|
||||||
#define __NR_capset 91
|
|
||||||
#define __NR_personality 92
|
|
||||||
#define __NR_exit 93
|
|
||||||
#define __NR_exit_group 94
|
|
||||||
#define __NR_waitid 95
|
|
||||||
#define __NR_set_tid_address 96
|
|
||||||
#define __NR_unshare 97
|
|
||||||
#define __NR_futex 98
|
|
||||||
#define __NR_set_robust_list 99
|
|
||||||
#define __NR_get_robust_list 100
|
|
||||||
#define __NR_nanosleep 101
|
|
||||||
#define __NR_getitimer 102
|
|
||||||
#define __NR_setitimer 103
|
|
||||||
#define __NR_kexec_load 104
|
|
||||||
#define __NR_init_module 105
|
|
||||||
#define __NR_delete_module 106
|
|
||||||
#define __NR_timer_create 107
|
|
||||||
#define __NR_timer_gettime 108
|
|
||||||
#define __NR_timer_getoverrun 109
|
|
||||||
#define __NR_timer_settime 110
|
|
||||||
#define __NR_timer_delete 111
|
|
||||||
#define __NR_clock_settime 112
|
|
||||||
#define __NR_clock_gettime 113
|
|
||||||
#define __NR_clock_getres 114
|
|
||||||
#define __NR_clock_nanosleep 115
|
|
||||||
#define __NR_syslog 116
|
|
||||||
#define __NR_ptrace 117
|
|
||||||
#define __NR_sched_setparam 118
|
|
||||||
#define __NR_sched_setscheduler 119
|
|
||||||
#define __NR_sched_getscheduler 120
|
|
||||||
#define __NR_sched_getparam 121
|
|
||||||
#define __NR_sched_setaffinity 122
|
|
||||||
#define __NR_sched_getaffinity 123
|
|
||||||
#define __NR_sched_yield 124
|
|
||||||
#define __NR_sched_get_priority_max 125
|
|
||||||
#define __NR_sched_get_priority_min 126
|
|
||||||
#define __NR_sched_rr_get_interval 127
|
|
||||||
#define __NR_restart_syscall 128
|
|
||||||
#define __NR_kill 129
|
|
||||||
#define __NR_tkill 130
|
|
||||||
#define __NR_tgkill 131
|
|
||||||
#define __NR_sigaltstack 132
|
|
||||||
#define __NR_rt_sigsuspend 133
|
|
||||||
#define __NR_rt_sigaction 134
|
|
||||||
#define __NR_rt_sigprocmask 135
|
|
||||||
#define __NR_rt_sigpending 136
|
|
||||||
#define __NR_rt_sigtimedwait 137
|
|
||||||
#define __NR_rt_sigqueueinfo 138
|
|
||||||
#define __NR_rt_sigreturn 139
|
|
||||||
#define __NR_setpriority 140
|
|
||||||
#define __NR_getpriority 141
|
|
||||||
#define __NR_reboot 142
|
|
||||||
#define __NR_setregid 143
|
|
||||||
#define __NR_setgid 144
|
|
||||||
#define __NR_setreuid 145
|
|
||||||
#define __NR_setuid 146
|
|
||||||
#define __NR_setresuid 147
|
|
||||||
#define __NR_getresuid 148
|
|
||||||
#define __NR_setresgid 149
|
|
||||||
#define __NR_getresgid 150
|
|
||||||
#define __NR_setfsuid 151
|
|
||||||
#define __NR_setfsgid 152
|
|
||||||
#define __NR_times 153
|
|
||||||
#define __NR_setpgid 154
|
|
||||||
#define __NR_getpgid 155
|
|
||||||
#define __NR_getsid 156
|
|
||||||
#define __NR_setsid 157
|
|
||||||
#define __NR_getgroups 158
|
|
||||||
#define __NR_setgroups 159
|
|
||||||
#define __NR_uname 160
|
|
||||||
#define __NR_sethostname 161
|
|
||||||
#define __NR_setdomainname 162
|
|
||||||
#define __NR_getrlimit 163
|
|
||||||
#define __NR_setrlimit 164
|
|
||||||
#define __NR_getrusage 165
|
|
||||||
#define __NR_umask 166
|
|
||||||
#define __NR_prctl 167
|
|
||||||
#define __NR_getcpu 168
|
|
||||||
#define __NR_gettimeofday 169
|
|
||||||
#define __NR_settimeofday 170
|
|
||||||
#define __NR_adjtimex 171
|
|
||||||
#define __NR_getpid 172
|
|
||||||
#define __NR_getppid 173
|
|
||||||
#define __NR_getuid 174
|
|
||||||
#define __NR_geteuid 175
|
|
||||||
#define __NR_getgid 176
|
|
||||||
#define __NR_getegid 177
|
|
||||||
#define __NR_gettid 178
|
|
||||||
#define __NR_sysinfo 179
|
|
||||||
#define __NR_mq_open 180
|
|
||||||
#define __NR_mq_unlink 181
|
|
||||||
#define __NR_mq_timedsend 182
|
|
||||||
#define __NR_mq_timedreceive 183
|
|
||||||
#define __NR_mq_notify 184
|
|
||||||
#define __NR_mq_getsetattr 185
|
|
||||||
#define __NR_msgget 186
|
|
||||||
#define __NR_msgctl 187
|
|
||||||
#define __NR_msgrcv 188
|
|
||||||
#define __NR_msgsnd 189
|
|
||||||
#define __NR_semget 190
|
|
||||||
#define __NR_semctl 191
|
|
||||||
#define __NR_semtimedop 192
|
|
||||||
#define __NR_semop 193
|
|
||||||
#define __NR_shmget 194
|
|
||||||
#define __NR_shmctl 195
|
|
||||||
#define __NR_shmat 196
|
|
||||||
#define __NR_shmdt 197
|
|
||||||
#define __NR_socket 198
|
|
||||||
#define __NR_socketpair 199
|
|
||||||
#define __NR_bind 200
|
|
||||||
#define __NR_listen 201
|
|
||||||
#define __NR_accept 202
|
|
||||||
#define __NR_connect 203
|
|
||||||
#define __NR_getsockname 204
|
|
||||||
#define __NR_getpeername 205
|
|
||||||
#define __NR_sendto 206
|
|
||||||
#define __NR_recvfrom 207
|
|
||||||
#define __NR_setsockopt 208
|
|
||||||
#define __NR_getsockopt 209
|
|
||||||
#define __NR_shutdown 210
|
|
||||||
#define __NR_sendmsg 211
|
|
||||||
#define __NR_recvmsg 212
|
|
||||||
#define __NR_readahead 213
|
|
||||||
#define __NR_brk 214
|
|
||||||
#define __NR_munmap 215
|
|
||||||
#define __NR_mremap 216
|
|
||||||
#define __NR_add_key 217
|
|
||||||
#define __NR_request_key 218
|
|
||||||
#define __NR_keyctl 219
|
|
||||||
#define __NR_clone 220
|
|
||||||
#define __NR_execve 221
|
|
||||||
#define __NR_mmap 222
|
|
||||||
#define __NR_fadvise64 223
|
|
||||||
#define __NR_swapon 224
|
|
||||||
#define __NR_swapoff 225
|
|
||||||
#define __NR_mprotect 226
|
|
||||||
#define __NR_msync 227
|
|
||||||
#define __NR_mlock 228
|
|
||||||
#define __NR_munlock 229
|
|
||||||
#define __NR_mlockall 230
|
|
||||||
#define __NR_munlockall 231
|
|
||||||
#define __NR_mincore 232
|
|
||||||
#define __NR_madvise 233
|
|
||||||
#define __NR_remap_file_pages 234
|
|
||||||
#define __NR_mbind 235
|
|
||||||
#define __NR_get_mempolicy 236
|
|
||||||
#define __NR_set_mempolicy 237
|
|
||||||
#define __NR_migrate_pages 238
|
|
||||||
#define __NR_move_pages 239
|
|
||||||
#define __NR_rt_tgsigqueueinfo 240
|
|
||||||
#define __NR_perf_event_open 241
|
|
||||||
#define __NR_accept4 242
|
|
||||||
#define __NR_recvmmsg 243
|
|
||||||
#define __NR_wait4 260
|
|
||||||
#define __NR_prlimit64 261
|
|
||||||
#define __NR_fanotify_init 262
|
|
||||||
#define __NR_fanotify_mark 263
|
|
||||||
#define __NR_name_to_handle_at 264
|
|
||||||
#define __NR_open_by_handle_at 265
|
|
||||||
#define __NR_clock_adjtime 266
|
|
||||||
#define __NR_syncfs 267
|
|
||||||
#define __NR_setns 268
|
|
||||||
#define __NR_sendmmsg 269
|
|
||||||
#define __NR_process_vm_readv 270
|
|
||||||
#define __NR_process_vm_writev 271
|
|
||||||
#define __NR_kcmp 272
|
|
||||||
#define __NR_finit_module 273
|
|
||||||
#define __NR_sched_setattr 274
|
|
||||||
#define __NR_sched_getattr 275
|
|
||||||
#define __NR_renameat2 276
|
|
||||||
#define __NR_seccomp 277
|
|
||||||
#define __NR_getrandom 278
|
|
||||||
#define __NR_memfd_create 279
|
|
||||||
#define __NR_bpf 280
|
|
||||||
#define __NR_execveat 281
|
|
||||||
#define __NR_userfaultfd 282
|
|
||||||
#define __NR_membarrier 283
|
|
||||||
#define __NR_mlock2 284
|
|
||||||
#define __NR_copy_file_range 285
|
|
||||||
#define __NR_preadv2 286
|
|
||||||
#define __NR_pwritev2 287
|
|
||||||
#define __NR_pkey_mprotect 288
|
|
||||||
#define __NR_pkey_alloc 289
|
|
||||||
#define __NR_pkey_free 290
|
|
||||||
#define __NR_statx 291
|
|
||||||
#define __NR_io_pgetevents 292
|
|
||||||
#define __NR_rseq 293
|
|
||||||
#define __NR_kexec_file_load 294
|
|
||||||
#define __NR_pidfd_send_signal 424
|
|
||||||
#define __NR_io_uring_setup 425
|
|
||||||
#define __NR_io_uring_enter 426
|
|
||||||
#define __NR_io_uring_register 427
|
|
||||||
#define __NR_open_tree 428
|
|
||||||
#define __NR_move_mount 429
|
|
||||||
#define __NR_fsopen 430
|
|
||||||
#define __NR_fsconfig 431
|
|
||||||
#define __NR_fsmount 432
|
|
||||||
#define __NR_fspick 433
|
|
||||||
#define __NR_pidfd_open 434
|
|
||||||
#define __NR_clone3 435
|
|
||||||
#define __NR_close_range 436
|
|
||||||
#define __NR_openat2 437
|
|
||||||
#define __NR_pidfd_getfd 438
|
|
||||||
#define __NR_faccessat2 439
|
|
||||||
#define __NR_process_madvise 440
|
|
||||||
#define __NR_epoll_pwait2 441
|
|
||||||
#define __NR_mount_setattr 442
|
|
||||||
#define __NR_landlock_create_ruleset 444
|
|
||||||
#define __NR_landlock_add_rule 445
|
|
||||||
#define __NR_landlock_restrict_self 446
|
|
||||||
#define __NR_process_mrelease 448
|
|
||||||
#define __NR_futex_waitv 449
|
|
||||||
#define __NR_set_mempolicy_home_node 450
|
|
||||||
#define __NR_cachestat 451
|
|
||||||
#define __NR_fchmodat2 452
|
|
||||||
|
|
|
@ -1,16 +0,0 @@
|
||||||
struct user_regs_struct {
|
|
||||||
unsigned long long regs[31];
|
|
||||||
unsigned long long sp;
|
|
||||||
unsigned long long pc;
|
|
||||||
unsigned long long pstate;
|
|
||||||
};
|
|
||||||
|
|
||||||
struct user_fpsimd_struct {
|
|
||||||
__uint128_t vregs[32];
|
|
||||||
unsigned int fpsr;
|
|
||||||
unsigned int fpcr;
|
|
||||||
};
|
|
||||||
|
|
||||||
#define ELF_NREG 34
|
|
||||||
typedef unsigned long elf_greg_t, elf_gregset_t[ELF_NREG];
|
|
||||||
typedef struct user_fpsimd_struct elf_fpregset_t;
|
|
|
@ -1,15 +0,0 @@
|
||||||
__asm__(
|
|
||||||
".text \n"
|
|
||||||
".global " START "\n"
|
|
||||||
".type " START ",%function\n"
|
|
||||||
START ":\n"
|
|
||||||
" mov x29, #0\n"
|
|
||||||
" mov x30, #0\n"
|
|
||||||
" mov x0, sp\n"
|
|
||||||
".weak _DYNAMIC\n"
|
|
||||||
".hidden _DYNAMIC\n"
|
|
||||||
" adrp x1, _DYNAMIC\n"
|
|
||||||
" add x1, x1, #:lo12:_DYNAMIC\n"
|
|
||||||
" and sp, x0, #-16\n"
|
|
||||||
" b " START "_c\n"
|
|
||||||
);
|
|
|
@ -1,25 +0,0 @@
|
||||||
#define fp_barrierf fp_barrierf
|
|
||||||
static inline float fp_barrierf(float x)
|
|
||||||
{
|
|
||||||
__asm__ __volatile__ ("" : "+w"(x));
|
|
||||||
return x;
|
|
||||||
}
|
|
||||||
|
|
||||||
#define fp_barrier fp_barrier
|
|
||||||
static inline double fp_barrier(double x)
|
|
||||||
{
|
|
||||||
__asm__ __volatile__ ("" : "+w"(x));
|
|
||||||
return x;
|
|
||||||
}
|
|
||||||
|
|
||||||
#define fp_force_evalf fp_force_evalf
|
|
||||||
static inline void fp_force_evalf(float x)
|
|
||||||
{
|
|
||||||
__asm__ __volatile__ ("" : "+w"(x));
|
|
||||||
}
|
|
||||||
|
|
||||||
#define fp_force_eval fp_force_eval
|
|
||||||
static inline void fp_force_eval(double x)
|
|
||||||
{
|
|
||||||
__asm__ __volatile__ ("" : "+w"(x));
|
|
||||||
}
|
|
|
@ -1,21 +0,0 @@
|
||||||
struct kstat {
|
|
||||||
dev_t st_dev;
|
|
||||||
ino_t st_ino;
|
|
||||||
mode_t st_mode;
|
|
||||||
nlink_t st_nlink;
|
|
||||||
uid_t st_uid;
|
|
||||||
gid_t st_gid;
|
|
||||||
dev_t st_rdev;
|
|
||||||
unsigned long __pad;
|
|
||||||
off_t st_size;
|
|
||||||
blksize_t st_blksize;
|
|
||||||
int __pad2;
|
|
||||||
blkcnt_t st_blocks;
|
|
||||||
long st_atime_sec;
|
|
||||||
long st_atime_nsec;
|
|
||||||
long st_mtime_sec;
|
|
||||||
long st_mtime_nsec;
|
|
||||||
long st_ctime_sec;
|
|
||||||
long st_ctime_nsec;
|
|
||||||
unsigned __unused[2];
|
|
||||||
};
|
|
|
@ -1,11 +0,0 @@
|
||||||
static inline uintptr_t __get_tp()
|
|
||||||
{
|
|
||||||
uintptr_t tp;
|
|
||||||
__asm__ ("mrs %0,tpidr_el0" : "=r"(tp));
|
|
||||||
return tp;
|
|
||||||
}
|
|
||||||
|
|
||||||
#define TLS_ABOVE_TP
|
|
||||||
#define GAP_ABOVE_TP 16
|
|
||||||
|
|
||||||
#define MC_PC pc
|
|
|
@ -1,24 +0,0 @@
|
||||||
#if __BYTE_ORDER == __BIG_ENDIAN
|
|
||||||
#define ENDIAN_SUFFIX "_be"
|
|
||||||
#else
|
|
||||||
#define ENDIAN_SUFFIX ""
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#define LDSO_ARCH "aarch64" ENDIAN_SUFFIX
|
|
||||||
|
|
||||||
#define NO_LEGACY_INITFINI
|
|
||||||
|
|
||||||
#define TPOFF_K 0
|
|
||||||
|
|
||||||
#define REL_SYMBOLIC R_AARCH64_ABS64
|
|
||||||
#define REL_GOT R_AARCH64_GLOB_DAT
|
|
||||||
#define REL_PLT R_AARCH64_JUMP_SLOT
|
|
||||||
#define REL_RELATIVE R_AARCH64_RELATIVE
|
|
||||||
#define REL_COPY R_AARCH64_COPY
|
|
||||||
#define REL_DTPMOD R_AARCH64_TLS_DTPMOD64
|
|
||||||
#define REL_DTPOFF R_AARCH64_TLS_DTPREL64
|
|
||||||
#define REL_TPOFF R_AARCH64_TLS_TPREL64
|
|
||||||
#define REL_TLSDESC R_AARCH64_TLSDESC
|
|
||||||
|
|
||||||
#define CRTJMP(pc,sp) __asm__ __volatile__( \
|
|
||||||
"mov sp,%1 ; br %0" : : "r"(pc), "r"(sp) : "memory" )
|
|
|
@ -1,78 +0,0 @@
|
||||||
#define __SYSCALL_LL_E(x) (x)
|
|
||||||
#define __SYSCALL_LL_O(x) (x)
|
|
||||||
|
|
||||||
#define __asm_syscall(...) do { \
|
|
||||||
__asm__ __volatile__ ( "svc 0" \
|
|
||||||
: "=r"(x0) : __VA_ARGS__ : "memory", "cc"); \
|
|
||||||
return x0; \
|
|
||||||
} while (0)
|
|
||||||
|
|
||||||
static inline long __syscall0(long n)
|
|
||||||
{
|
|
||||||
register long x8 __asm__("x8") = n;
|
|
||||||
register long x0 __asm__("x0");
|
|
||||||
__asm_syscall("r"(x8));
|
|
||||||
}
|
|
||||||
|
|
||||||
static inline long __syscall1(long n, long a)
|
|
||||||
{
|
|
||||||
register long x8 __asm__("x8") = n;
|
|
||||||
register long x0 __asm__("x0") = a;
|
|
||||||
__asm_syscall("r"(x8), "0"(x0));
|
|
||||||
}
|
|
||||||
|
|
||||||
static inline long __syscall2(long n, long a, long b)
|
|
||||||
{
|
|
||||||
register long x8 __asm__("x8") = n;
|
|
||||||
register long x0 __asm__("x0") = a;
|
|
||||||
register long x1 __asm__("x1") = b;
|
|
||||||
__asm_syscall("r"(x8), "0"(x0), "r"(x1));
|
|
||||||
}
|
|
||||||
|
|
||||||
static inline long __syscall3(long n, long a, long b, long c)
|
|
||||||
{
|
|
||||||
register long x8 __asm__("x8") = n;
|
|
||||||
register long x0 __asm__("x0") = a;
|
|
||||||
register long x1 __asm__("x1") = b;
|
|
||||||
register long x2 __asm__("x2") = c;
|
|
||||||
__asm_syscall("r"(x8), "0"(x0), "r"(x1), "r"(x2));
|
|
||||||
}
|
|
||||||
|
|
||||||
static inline long __syscall4(long n, long a, long b, long c, long d)
|
|
||||||
{
|
|
||||||
register long x8 __asm__("x8") = n;
|
|
||||||
register long x0 __asm__("x0") = a;
|
|
||||||
register long x1 __asm__("x1") = b;
|
|
||||||
register long x2 __asm__("x2") = c;
|
|
||||||
register long x3 __asm__("x3") = d;
|
|
||||||
__asm_syscall("r"(x8), "0"(x0), "r"(x1), "r"(x2), "r"(x3));
|
|
||||||
}
|
|
||||||
|
|
||||||
static inline long __syscall5(long n, long a, long b, long c, long d, long e)
|
|
||||||
{
|
|
||||||
register long x8 __asm__("x8") = n;
|
|
||||||
register long x0 __asm__("x0") = a;
|
|
||||||
register long x1 __asm__("x1") = b;
|
|
||||||
register long x2 __asm__("x2") = c;
|
|
||||||
register long x3 __asm__("x3") = d;
|
|
||||||
register long x4 __asm__("x4") = e;
|
|
||||||
__asm_syscall("r"(x8), "0"(x0), "r"(x1), "r"(x2), "r"(x3), "r"(x4));
|
|
||||||
}
|
|
||||||
|
|
||||||
static inline long __syscall6(long n, long a, long b, long c, long d, long e, long f)
|
|
||||||
{
|
|
||||||
register long x8 __asm__("x8") = n;
|
|
||||||
register long x0 __asm__("x0") = a;
|
|
||||||
register long x1 __asm__("x1") = b;
|
|
||||||
register long x2 __asm__("x2") = c;
|
|
||||||
register long x3 __asm__("x3") = d;
|
|
||||||
register long x4 __asm__("x4") = e;
|
|
||||||
register long x5 __asm__("x5") = f;
|
|
||||||
__asm_syscall("r"(x8), "0"(x0), "r"(x1), "r"(x2), "r"(x3), "r"(x4), "r"(x5));
|
|
||||||
}
|
|
||||||
|
|
||||||
#define VDSO_USEFUL
|
|
||||||
#define VDSO_CGT_SYM "__kernel_clock_gettime"
|
|
||||||
#define VDSO_CGT_VER "LINUX_2.6.39"
|
|
||||||
|
|
||||||
#define IPC_64 0
|
|
|
@ -1 +0,0 @@
|
||||||
COMPAT_SRC_DIRS = compat/time32
|
|
|
@ -1,107 +0,0 @@
|
||||||
#include "libc.h"
|
|
||||||
|
|
||||||
#if __ARM_ARCH_4__ || __ARM_ARCH_4T__ || __ARM_ARCH == 4
|
|
||||||
#define BLX "mov lr,pc\n\tbx"
|
|
||||||
#else
|
|
||||||
#define BLX "blx"
|
|
||||||
#endif
|
|
||||||
|
|
||||||
extern hidden uintptr_t __a_cas_ptr, __a_barrier_ptr;
|
|
||||||
|
|
||||||
#if ((__ARM_ARCH_6__ || __ARM_ARCH_6K__ || __ARM_ARCH_6KZ__ || __ARM_ARCH_6ZK__) && !__thumb__) \
|
|
||||||
|| __ARM_ARCH_6T2__ || __ARM_ARCH_7A__ || __ARM_ARCH_7R__ || __ARM_ARCH >= 7
|
|
||||||
|
|
||||||
#define a_ll a_ll
|
|
||||||
static inline int a_ll(volatile int *p)
|
|
||||||
{
|
|
||||||
int v;
|
|
||||||
__asm__ __volatile__ ("ldrex %0, %1" : "=r"(v) : "Q"(*p));
|
|
||||||
return v;
|
|
||||||
}
|
|
||||||
|
|
||||||
#define a_sc a_sc
|
|
||||||
static inline int a_sc(volatile int *p, int v)
|
|
||||||
{
|
|
||||||
int r;
|
|
||||||
__asm__ __volatile__ ("strex %0,%2,%1" : "=&r"(r), "=Q"(*p) : "r"(v) : "memory");
|
|
||||||
return !r;
|
|
||||||
}
|
|
||||||
|
|
||||||
#if __ARM_ARCH_7A__ || __ARM_ARCH_7R__ || __ARM_ARCH >= 7
|
|
||||||
|
|
||||||
#define a_barrier a_barrier
|
|
||||||
static inline void a_barrier()
|
|
||||||
{
|
|
||||||
__asm__ __volatile__ ("dmb ish" : : : "memory");
|
|
||||||
}
|
|
||||||
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#define a_pre_llsc a_barrier
|
|
||||||
#define a_post_llsc a_barrier
|
|
||||||
|
|
||||||
#else
|
|
||||||
|
|
||||||
#define a_cas a_cas
|
|
||||||
static inline int a_cas(volatile int *p, int t, int s)
|
|
||||||
{
|
|
||||||
for (;;) {
|
|
||||||
register int r0 __asm__("r0") = t;
|
|
||||||
register int r1 __asm__("r1") = s;
|
|
||||||
register volatile int *r2 __asm__("r2") = p;
|
|
||||||
register uintptr_t r3 __asm__("r3") = __a_cas_ptr;
|
|
||||||
int old;
|
|
||||||
__asm__ __volatile__ (
|
|
||||||
BLX " r3"
|
|
||||||
: "+r"(r0), "+r"(r3) : "r"(r1), "r"(r2)
|
|
||||||
: "memory", "lr", "ip", "cc" );
|
|
||||||
if (!r0) return t;
|
|
||||||
if ((old=*p)!=t) return old;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifndef a_barrier
|
|
||||||
#define a_barrier a_barrier
|
|
||||||
static inline void a_barrier()
|
|
||||||
{
|
|
||||||
register uintptr_t ip __asm__("ip") = __a_barrier_ptr;
|
|
||||||
__asm__ __volatile__( BLX " ip" : "+r"(ip) : : "memory", "cc", "lr" );
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#define a_crash a_crash
|
|
||||||
static inline void a_crash()
|
|
||||||
{
|
|
||||||
__asm__ __volatile__(
|
|
||||||
#ifndef __thumb__
|
|
||||||
".word 0xe7f000f0"
|
|
||||||
#else
|
|
||||||
".short 0xdeff"
|
|
||||||
#endif
|
|
||||||
: : : "memory");
|
|
||||||
}
|
|
||||||
|
|
||||||
#if __ARM_ARCH >= 5 && (!__thumb__ || __thumb2__)
|
|
||||||
|
|
||||||
#define a_clz_32 a_clz_32
|
|
||||||
static inline int a_clz_32(uint32_t x)
|
|
||||||
{
|
|
||||||
__asm__ ("clz %0, %1" : "=r"(x) : "r"(x));
|
|
||||||
return x;
|
|
||||||
}
|
|
||||||
|
|
||||||
#if __ARM_ARCH_6T2__ || __ARM_ARCH_7A__ || __ARM_ARCH_7R__ || __ARM_ARCH >= 7
|
|
||||||
|
|
||||||
#define a_ctz_32 a_ctz_32
|
|
||||||
static inline int a_ctz_32(uint32_t x)
|
|
||||||
{
|
|
||||||
uint32_t xr;
|
|
||||||
__asm__ ("rbit %0, %1" : "=r"(xr) : "r"(x));
|
|
||||||
return a_clz_32(xr);
|
|
||||||
}
|
|
||||||
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif
|
|
|
@ -1,21 +0,0 @@
|
||||||
#define _REDIR_TIME64 1
|
|
||||||
#define _Addr int
|
|
||||||
#define _Int64 long long
|
|
||||||
#define _Reg int
|
|
||||||
|
|
||||||
#if __ARMEB__
|
|
||||||
#define __BYTE_ORDER 4321
|
|
||||||
#else
|
|
||||||
#define __BYTE_ORDER 1234
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#define __LONG_MAX 0x7fffffffL
|
|
||||||
|
|
||||||
#ifndef __cplusplus
|
|
||||||
TYPEDEF unsigned wchar_t;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
TYPEDEF float float_t;
|
|
||||||
TYPEDEF double double_t;
|
|
||||||
|
|
||||||
TYPEDEF struct { long long __ll; long double __ld; } max_align_t;
|
|
|
@ -1,40 +0,0 @@
|
||||||
#define O_CREAT 0100
|
|
||||||
#define O_EXCL 0200
|
|
||||||
#define O_NOCTTY 0400
|
|
||||||
#define O_TRUNC 01000
|
|
||||||
#define O_APPEND 02000
|
|
||||||
#define O_NONBLOCK 04000
|
|
||||||
#define O_DSYNC 010000
|
|
||||||
#define O_SYNC 04010000
|
|
||||||
#define O_RSYNC 04010000
|
|
||||||
#define O_DIRECTORY 040000
|
|
||||||
#define O_NOFOLLOW 0100000
|
|
||||||
#define O_CLOEXEC 02000000
|
|
||||||
|
|
||||||
#define O_ASYNC 020000
|
|
||||||
#define O_DIRECT 0200000
|
|
||||||
#define O_LARGEFILE 0400000
|
|
||||||
#define O_NOATIME 01000000
|
|
||||||
#define O_PATH 010000000
|
|
||||||
#define O_TMPFILE 020040000
|
|
||||||
#define O_NDELAY O_NONBLOCK
|
|
||||||
|
|
||||||
#define F_DUPFD 0
|
|
||||||
#define F_GETFD 1
|
|
||||||
#define F_SETFD 2
|
|
||||||
#define F_GETFL 3
|
|
||||||
#define F_SETFL 4
|
|
||||||
|
|
||||||
#define F_SETOWN 8
|
|
||||||
#define F_GETOWN 9
|
|
||||||
#define F_SETSIG 10
|
|
||||||
#define F_GETSIG 11
|
|
||||||
|
|
||||||
#define F_GETLK 12
|
|
||||||
#define F_SETLK 13
|
|
||||||
#define F_SETLKW 14
|
|
||||||
|
|
||||||
#define F_SETOWN_EX 15
|
|
||||||
#define F_GETOWN_EX 16
|
|
||||||
|
|
||||||
#define F_GETOWNER_UIDS 17
|
|
|
@ -1,23 +0,0 @@
|
||||||
#ifndef __ARM_PCS_VFP
|
|
||||||
#define FE_ALL_EXCEPT 0
|
|
||||||
#define FE_TONEAREST 0
|
|
||||||
#else
|
|
||||||
#define FE_INVALID 1
|
|
||||||
#define FE_DIVBYZERO 2
|
|
||||||
#define FE_OVERFLOW 4
|
|
||||||
#define FE_UNDERFLOW 8
|
|
||||||
#define FE_INEXACT 16
|
|
||||||
#define FE_ALL_EXCEPT 31
|
|
||||||
#define FE_TONEAREST 0
|
|
||||||
#define FE_DOWNWARD 0x800000
|
|
||||||
#define FE_UPWARD 0x400000
|
|
||||||
#define FE_TOWARDZERO 0xc00000
|
|
||||||
#endif
|
|
||||||
|
|
||||||
typedef unsigned long fexcept_t;
|
|
||||||
|
|
||||||
typedef struct {
|
|
||||||
unsigned long __cw;
|
|
||||||
} fenv_t;
|
|
||||||
|
|
||||||
#define FE_DFL_ENV ((const fenv_t *) -1)
|
|
|
@ -1,16 +0,0 @@
|
||||||
#define FLT_EVAL_METHOD 0
|
|
||||||
|
|
||||||
#define LDBL_TRUE_MIN 4.94065645841246544177e-324L
|
|
||||||
#define LDBL_MIN 2.22507385850720138309e-308L
|
|
||||||
#define LDBL_MAX 1.79769313486231570815e+308L
|
|
||||||
#define LDBL_EPSILON 2.22044604925031308085e-16L
|
|
||||||
|
|
||||||
#define LDBL_MANT_DIG 53
|
|
||||||
#define LDBL_MIN_EXP (-1021)
|
|
||||||
#define LDBL_MAX_EXP 1024
|
|
||||||
|
|
||||||
#define LDBL_DIG 15
|
|
||||||
#define LDBL_MIN_10_EXP (-307)
|
|
||||||
#define LDBL_MAX_10_EXP 308
|
|
||||||
|
|
||||||
#define DECIMAL_DIG 17
|
|
|
@ -1,53 +0,0 @@
|
||||||
#define HWCAP_SWP (1 << 0)
|
|
||||||
#define HWCAP_HALF (1 << 1)
|
|
||||||
#define HWCAP_THUMB (1 << 2)
|
|
||||||
#define HWCAP_26BIT (1 << 3)
|
|
||||||
#define HWCAP_FAST_MULT (1 << 4)
|
|
||||||
#define HWCAP_FPA (1 << 5)
|
|
||||||
#define HWCAP_VFP (1 << 6)
|
|
||||||
#define HWCAP_EDSP (1 << 7)
|
|
||||||
#define HWCAP_JAVA (1 << 8)
|
|
||||||
#define HWCAP_IWMMXT (1 << 9)
|
|
||||||
#define HWCAP_CRUNCH (1 << 10)
|
|
||||||
#define HWCAP_THUMBEE (1 << 11)
|
|
||||||
#define HWCAP_NEON (1 << 12)
|
|
||||||
#define HWCAP_VFPv3 (1 << 13)
|
|
||||||
#define HWCAP_VFPv3D16 (1 << 14)
|
|
||||||
#define HWCAP_TLS (1 << 15)
|
|
||||||
#define HWCAP_VFPv4 (1 << 16)
|
|
||||||
#define HWCAP_IDIVA (1 << 17)
|
|
||||||
#define HWCAP_IDIVT (1 << 18)
|
|
||||||
#define HWCAP_VFPD32 (1 << 19)
|
|
||||||
#define HWCAP_IDIV (HWCAP_IDIVA | HWCAP_IDIVT)
|
|
||||||
#define HWCAP_LPAE (1 << 20)
|
|
||||||
#define HWCAP_EVTSTRM (1 << 21)
|
|
||||||
|
|
||||||
#define HWCAP2_AES (1 << 0)
|
|
||||||
#define HWCAP2_PMULL (1 << 1)
|
|
||||||
#define HWCAP2_SHA1 (1 << 2)
|
|
||||||
#define HWCAP2_SHA2 (1 << 3)
|
|
||||||
#define HWCAP2_CRC32 (1 << 4)
|
|
||||||
|
|
||||||
#define HWCAP_ARM_SWP (1 << 0)
|
|
||||||
#define HWCAP_ARM_HALF (1 << 1)
|
|
||||||
#define HWCAP_ARM_THUMB (1 << 2)
|
|
||||||
#define HWCAP_ARM_26BIT (1 << 3)
|
|
||||||
#define HWCAP_ARM_FAST_MULT (1 << 4)
|
|
||||||
#define HWCAP_ARM_FPA (1 << 5)
|
|
||||||
#define HWCAP_ARM_VFP (1 << 6)
|
|
||||||
#define HWCAP_ARM_EDSP (1 << 7)
|
|
||||||
#define HWCAP_ARM_JAVA (1 << 8)
|
|
||||||
#define HWCAP_ARM_IWMMXT (1 << 9)
|
|
||||||
#define HWCAP_ARM_CRUNCH (1 << 10)
|
|
||||||
#define HWCAP_ARM_THUMBEE (1 << 11)
|
|
||||||
#define HWCAP_ARM_NEON (1 << 12)
|
|
||||||
#define HWCAP_ARM_VFPv3 (1 << 13)
|
|
||||||
#define HWCAP_ARM_VFPv3D16 (1 << 14)
|
|
||||||
#define HWCAP_ARM_TLS (1 << 15)
|
|
||||||
#define HWCAP_ARM_VFPv4 (1 << 16)
|
|
||||||
#define HWCAP_ARM_IDIVA (1 << 17)
|
|
||||||
#define HWCAP_ARM_IDIVT (1 << 18)
|
|
||||||
#define HWCAP_ARM_VFPD32 (1 << 19)
|
|
||||||
#define HWCAP_ARM_IDIV (HWCAP_ARM_IDIVA | HWCAP_ARM_IDIVT)
|
|
||||||
#define HWCAP_ARM_LPAE (1 << 20)
|
|
||||||
#define HWCAP_ARM_EVTSTRM (1 << 21)
|
|
|
@ -1,2 +0,0 @@
|
||||||
#undef FIOQSIZE
|
|
||||||
#define FIOQSIZE 0x545e
|
|
|
@ -1 +0,0 @@
|
||||||
#define IPC_STAT 0x102
|
|
|
@ -1,18 +0,0 @@
|
||||||
struct msqid_ds {
|
|
||||||
struct ipc_perm msg_perm;
|
|
||||||
unsigned long __msg_stime_lo;
|
|
||||||
unsigned long __msg_stime_hi;
|
|
||||||
unsigned long __msg_rtime_lo;
|
|
||||||
unsigned long __msg_rtime_hi;
|
|
||||||
unsigned long __msg_ctime_lo;
|
|
||||||
unsigned long __msg_ctime_hi;
|
|
||||||
unsigned long msg_cbytes;
|
|
||||||
msgqnum_t msg_qnum;
|
|
||||||
msglen_t msg_qbytes;
|
|
||||||
pid_t msg_lspid;
|
|
||||||
pid_t msg_lrpid;
|
|
||||||
unsigned long __unused[2];
|
|
||||||
time_t msg_stime;
|
|
||||||
time_t msg_rtime;
|
|
||||||
time_t msg_ctime;
|
|
||||||
};
|
|
|
@ -1,25 +0,0 @@
|
||||||
#define PTRACE_GETWMMXREGS 18
|
|
||||||
#define PTRACE_SETWMMXREGS 19
|
|
||||||
#define PTRACE_GET_THREAD_AREA 22
|
|
||||||
#define PTRACE_SET_SYSCALL 23
|
|
||||||
#define PTRACE_GETCRUNCHREGS 25
|
|
||||||
#define PTRACE_SETCRUNCHREGS 26
|
|
||||||
#define PTRACE_GETVFPREGS 27
|
|
||||||
#define PTRACE_SETVFPREGS 28
|
|
||||||
#define PTRACE_GETHBPREGS 29
|
|
||||||
#define PTRACE_SETHBPREGS 30
|
|
||||||
#define PTRACE_GETFDPIC 31
|
|
||||||
#define PTRACE_GETFDPIC_EXEC 0
|
|
||||||
#define PTRACE_GETFDPIC_INTERP 1
|
|
||||||
|
|
||||||
#define PT_GETWMMXREGS PTRACE_GETWMMXREGS
|
|
||||||
#define PT_SETWMMXREGS PTRACE_SETWMMXREGS
|
|
||||||
#define PT_GET_THREAD_AREA PTRACE_GET_THREAD_AREA
|
|
||||||
#define PT_SET_SYSCALL PTRACE_SET_SYSCALL
|
|
||||||
#define PT_GETCRUNCHREGS PTRACE_GETCRUNCHREGS
|
|
||||||
#define PT_SETCRUNCHREGS PTRACE_SETCRUNCHREGS
|
|
||||||
#define PT_GETVFPREGS PTRACE_GETVFPREGS
|
|
||||||
#define PT_SETVFPREGS PTRACE_SETVFPREGS
|
|
||||||
#define PT_GETHBPREGS PTRACE_GETHBPREGS
|
|
||||||
#define PT_SETHBPREGS PTRACE_SETHBPREGS
|
|
||||||
#define PT_GETFDPIC PTRACE_GETFDPIC
|
|
|
@ -1,18 +0,0 @@
|
||||||
struct semid_ds {
|
|
||||||
struct ipc_perm sem_perm;
|
|
||||||
unsigned long __sem_otime_lo;
|
|
||||||
unsigned long __sem_otime_hi;
|
|
||||||
unsigned long __sem_ctime_lo;
|
|
||||||
unsigned long __sem_ctime_hi;
|
|
||||||
#if __BYTE_ORDER == __LITTLE_ENDIAN
|
|
||||||
unsigned short sem_nsems;
|
|
||||||
char __sem_nsems_pad[sizeof(long)-sizeof(short)];
|
|
||||||
#else
|
|
||||||
char __sem_nsems_pad[sizeof(long)-sizeof(short)];
|
|
||||||
unsigned short sem_nsems;
|
|
||||||
#endif
|
|
||||||
long __unused3;
|
|
||||||
long __unused4;
|
|
||||||
time_t sem_otime;
|
|
||||||
time_t sem_ctime;
|
|
||||||
};
|
|
|
@ -1 +0,0 @@
|
||||||
typedef unsigned long long __jmp_buf[32];
|
|
|
@ -1,31 +0,0 @@
|
||||||
#define SHMLBA 4096
|
|
||||||
|
|
||||||
struct shmid_ds {
|
|
||||||
struct ipc_perm shm_perm;
|
|
||||||
size_t shm_segsz;
|
|
||||||
unsigned long __shm_atime_lo;
|
|
||||||
unsigned long __shm_atime_hi;
|
|
||||||
unsigned long __shm_dtime_lo;
|
|
||||||
unsigned long __shm_dtime_hi;
|
|
||||||
unsigned long __shm_ctime_lo;
|
|
||||||
unsigned long __shm_ctime_hi;
|
|
||||||
pid_t shm_cpid;
|
|
||||||
pid_t shm_lpid;
|
|
||||||
unsigned long shm_nattch;
|
|
||||||
unsigned long __pad1;
|
|
||||||
unsigned long __pad2;
|
|
||||||
unsigned long __pad3;
|
|
||||||
time_t shm_atime;
|
|
||||||
time_t shm_dtime;
|
|
||||||
time_t shm_ctime;
|
|
||||||
};
|
|
||||||
|
|
||||||
struct shminfo {
|
|
||||||
unsigned long shmmax, shmmin, shmmni, shmseg, shmall, __unused[4];
|
|
||||||
};
|
|
||||||
|
|
||||||
struct shm_info {
|
|
||||||
int __used_ids;
|
|
||||||
unsigned long shm_tot, shm_rss, shm_swp;
|
|
||||||
unsigned long __swap_attempts, __swap_successes;
|
|
||||||
};
|
|
|
@ -1,86 +0,0 @@
|
||||||
#if defined(_POSIX_SOURCE) || defined(_POSIX_C_SOURCE) \
|
|
||||||
|| defined(_XOPEN_SOURCE) || defined(_GNU_SOURCE) || defined(_BSD_SOURCE)
|
|
||||||
|
|
||||||
#if defined(_XOPEN_SOURCE) || defined(_GNU_SOURCE) || defined(_BSD_SOURCE)
|
|
||||||
#define MINSIGSTKSZ 2048
|
|
||||||
#define SIGSTKSZ 8192
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if defined(_GNU_SOURCE) || defined(_BSD_SOURCE)
|
|
||||||
typedef int greg_t, gregset_t[18];
|
|
||||||
typedef struct sigcontext {
|
|
||||||
unsigned long trap_no, error_code, oldmask;
|
|
||||||
unsigned long arm_r0, arm_r1, arm_r2, arm_r3;
|
|
||||||
unsigned long arm_r4, arm_r5, arm_r6, arm_r7;
|
|
||||||
unsigned long arm_r8, arm_r9, arm_r10, arm_fp;
|
|
||||||
unsigned long arm_ip, arm_sp, arm_lr, arm_pc;
|
|
||||||
unsigned long arm_cpsr, fault_address;
|
|
||||||
} mcontext_t;
|
|
||||||
#else
|
|
||||||
typedef struct {
|
|
||||||
unsigned long __regs[21];
|
|
||||||
} mcontext_t;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
struct sigaltstack {
|
|
||||||
void *ss_sp;
|
|
||||||
int ss_flags;
|
|
||||||
size_t ss_size;
|
|
||||||
};
|
|
||||||
|
|
||||||
typedef struct __ucontext {
|
|
||||||
unsigned long uc_flags;
|
|
||||||
struct __ucontext *uc_link;
|
|
||||||
stack_t uc_stack;
|
|
||||||
mcontext_t uc_mcontext;
|
|
||||||
sigset_t uc_sigmask;
|
|
||||||
unsigned long long uc_regspace[64];
|
|
||||||
} ucontext_t;
|
|
||||||
|
|
||||||
#define SA_NOCLDSTOP 1
|
|
||||||
#define SA_NOCLDWAIT 2
|
|
||||||
#define SA_SIGINFO 4
|
|
||||||
#define SA_ONSTACK 0x08000000
|
|
||||||
#define SA_RESTART 0x10000000
|
|
||||||
#define SA_NODEFER 0x40000000
|
|
||||||
#define SA_RESETHAND 0x80000000
|
|
||||||
#define SA_RESTORER 0x04000000
|
|
||||||
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#define SIGHUP 1
|
|
||||||
#define SIGINT 2
|
|
||||||
#define SIGQUIT 3
|
|
||||||
#define SIGILL 4
|
|
||||||
#define SIGTRAP 5
|
|
||||||
#define SIGABRT 6
|
|
||||||
#define SIGIOT SIGABRT
|
|
||||||
#define SIGBUS 7
|
|
||||||
#define SIGFPE 8
|
|
||||||
#define SIGKILL 9
|
|
||||||
#define SIGUSR1 10
|
|
||||||
#define SIGSEGV 11
|
|
||||||
#define SIGUSR2 12
|
|
||||||
#define SIGPIPE 13
|
|
||||||
#define SIGALRM 14
|
|
||||||
#define SIGTERM 15
|
|
||||||
#define SIGSTKFLT 16
|
|
||||||
#define SIGCHLD 17
|
|
||||||
#define SIGCONT 18
|
|
||||||
#define SIGSTOP 19
|
|
||||||
#define SIGTSTP 20
|
|
||||||
#define SIGTTIN 21
|
|
||||||
#define SIGTTOU 22
|
|
||||||
#define SIGURG 23
|
|
||||||
#define SIGXCPU 24
|
|
||||||
#define SIGXFSZ 25
|
|
||||||
#define SIGVTALRM 26
|
|
||||||
#define SIGPROF 27
|
|
||||||
#define SIGWINCH 28
|
|
||||||
#define SIGIO 29
|
|
||||||
#define SIGPOLL 29
|
|
||||||
#define SIGPWR 30
|
|
||||||
#define SIGSYS 31
|
|
||||||
#define SIGUNUSED SIGSYS
|
|
||||||
|
|
||||||
#define _NSIG 65
|
|
|
@ -1,25 +0,0 @@
|
||||||
/* copied from kernel definition, but with padding replaced
|
|
||||||
* by the corresponding correctly-sized userspace types. */
|
|
||||||
|
|
||||||
struct stat {
|
|
||||||
dev_t st_dev;
|
|
||||||
int __st_dev_padding;
|
|
||||||
long __st_ino_truncated;
|
|
||||||
mode_t st_mode;
|
|
||||||
nlink_t st_nlink;
|
|
||||||
uid_t st_uid;
|
|
||||||
gid_t st_gid;
|
|
||||||
dev_t st_rdev;
|
|
||||||
int __st_rdev_padding;
|
|
||||||
off_t st_size;
|
|
||||||
blksize_t st_blksize;
|
|
||||||
blkcnt_t st_blocks;
|
|
||||||
struct {
|
|
||||||
long tv_sec;
|
|
||||||
long tv_nsec;
|
|
||||||
} __st_atim32, __st_mtim32, __st_ctim32;
|
|
||||||
ino_t st_ino;
|
|
||||||
struct timespec st_atim;
|
|
||||||
struct timespec st_mtim;
|
|
||||||
struct timespec st_ctim;
|
|
||||||
};
|
|
|
@ -1,414 +0,0 @@
|
||||||
#define __NR_restart_syscall 0
|
|
||||||
#define __NR_exit 1
|
|
||||||
#define __NR_fork 2
|
|
||||||
#define __NR_read 3
|
|
||||||
#define __NR_write 4
|
|
||||||
#define __NR_open 5
|
|
||||||
#define __NR_close 6
|
|
||||||
#define __NR_creat 8
|
|
||||||
#define __NR_link 9
|
|
||||||
#define __NR_unlink 10
|
|
||||||
#define __NR_execve 11
|
|
||||||
#define __NR_chdir 12
|
|
||||||
#define __NR_mknod 14
|
|
||||||
#define __NR_chmod 15
|
|
||||||
#define __NR_lchown 16
|
|
||||||
#define __NR_lseek 19
|
|
||||||
#define __NR_getpid 20
|
|
||||||
#define __NR_mount 21
|
|
||||||
#define __NR_setuid 23
|
|
||||||
#define __NR_getuid 24
|
|
||||||
#define __NR_ptrace 26
|
|
||||||
#define __NR_pause 29
|
|
||||||
#define __NR_access 33
|
|
||||||
#define __NR_nice 34
|
|
||||||
#define __NR_sync 36
|
|
||||||
#define __NR_kill 37
|
|
||||||
#define __NR_rename 38
|
|
||||||
#define __NR_mkdir 39
|
|
||||||
#define __NR_rmdir 40
|
|
||||||
#define __NR_dup 41
|
|
||||||
#define __NR_pipe 42
|
|
||||||
#define __NR_times 43
|
|
||||||
#define __NR_brk 45
|
|
||||||
#define __NR_setgid 46
|
|
||||||
#define __NR_getgid 47
|
|
||||||
#define __NR_geteuid 49
|
|
||||||
#define __NR_getegid 50
|
|
||||||
#define __NR_acct 51
|
|
||||||
#define __NR_umount2 52
|
|
||||||
#define __NR_ioctl 54
|
|
||||||
#define __NR_fcntl 55
|
|
||||||
#define __NR_setpgid 57
|
|
||||||
#define __NR_umask 60
|
|
||||||
#define __NR_chroot 61
|
|
||||||
#define __NR_ustat 62
|
|
||||||
#define __NR_dup2 63
|
|
||||||
#define __NR_getppid 64
|
|
||||||
#define __NR_getpgrp 65
|
|
||||||
#define __NR_setsid 66
|
|
||||||
#define __NR_sigaction 67
|
|
||||||
#define __NR_setreuid 70
|
|
||||||
#define __NR_setregid 71
|
|
||||||
#define __NR_sigsuspend 72
|
|
||||||
#define __NR_sigpending 73
|
|
||||||
#define __NR_sethostname 74
|
|
||||||
#define __NR_setrlimit 75
|
|
||||||
#define __NR_getrusage 77
|
|
||||||
#define __NR_gettimeofday_time32 78
|
|
||||||
#define __NR_settimeofday_time32 79
|
|
||||||
#define __NR_getgroups 80
|
|
||||||
#define __NR_setgroups 81
|
|
||||||
#define __NR_symlink 83
|
|
||||||
#define __NR_readlink 85
|
|
||||||
#define __NR_uselib 86
|
|
||||||
#define __NR_swapon 87
|
|
||||||
#define __NR_reboot 88
|
|
||||||
#define __NR_munmap 91
|
|
||||||
#define __NR_truncate 92
|
|
||||||
#define __NR_ftruncate 93
|
|
||||||
#define __NR_fchmod 94
|
|
||||||
#define __NR_fchown 95
|
|
||||||
#define __NR_getpriority 96
|
|
||||||
#define __NR_setpriority 97
|
|
||||||
#define __NR_statfs 99
|
|
||||||
#define __NR_fstatfs 100
|
|
||||||
#define __NR_syslog 103
|
|
||||||
#define __NR_setitimer 104
|
|
||||||
#define __NR_getitimer 105
|
|
||||||
#define __NR_stat 106
|
|
||||||
#define __NR_lstat 107
|
|
||||||
#define __NR_fstat 108
|
|
||||||
#define __NR_vhangup 111
|
|
||||||
#define __NR_wait4 114
|
|
||||||
#define __NR_swapoff 115
|
|
||||||
#define __NR_sysinfo 116
|
|
||||||
#define __NR_fsync 118
|
|
||||||
#define __NR_sigreturn 119
|
|
||||||
#define __NR_clone 120
|
|
||||||
#define __NR_setdomainname 121
|
|
||||||
#define __NR_uname 122
|
|
||||||
#define __NR_adjtimex 124
|
|
||||||
#define __NR_mprotect 125
|
|
||||||
#define __NR_sigprocmask 126
|
|
||||||
#define __NR_init_module 128
|
|
||||||
#define __NR_delete_module 129
|
|
||||||
#define __NR_quotactl 131
|
|
||||||
#define __NR_getpgid 132
|
|
||||||
#define __NR_fchdir 133
|
|
||||||
#define __NR_bdflush 134
|
|
||||||
#define __NR_sysfs 135
|
|
||||||
#define __NR_personality 136
|
|
||||||
#define __NR_setfsuid 138
|
|
||||||
#define __NR_setfsgid 139
|
|
||||||
#define __NR__llseek 140
|
|
||||||
#define __NR_getdents 141
|
|
||||||
#define __NR__newselect 142
|
|
||||||
#define __NR_flock 143
|
|
||||||
#define __NR_msync 144
|
|
||||||
#define __NR_readv 145
|
|
||||||
#define __NR_writev 146
|
|
||||||
#define __NR_getsid 147
|
|
||||||
#define __NR_fdatasync 148
|
|
||||||
#define __NR__sysctl 149
|
|
||||||
#define __NR_mlock 150
|
|
||||||
#define __NR_munlock 151
|
|
||||||
#define __NR_mlockall 152
|
|
||||||
#define __NR_munlockall 153
|
|
||||||
#define __NR_sched_setparam 154
|
|
||||||
#define __NR_sched_getparam 155
|
|
||||||
#define __NR_sched_setscheduler 156
|
|
||||||
#define __NR_sched_getscheduler 157
|
|
||||||
#define __NR_sched_yield 158
|
|
||||||
#define __NR_sched_get_priority_max 159
|
|
||||||
#define __NR_sched_get_priority_min 160
|
|
||||||
#define __NR_sched_rr_get_interval 161
|
|
||||||
#define __NR_nanosleep 162
|
|
||||||
#define __NR_mremap 163
|
|
||||||
#define __NR_setresuid 164
|
|
||||||
#define __NR_getresuid 165
|
|
||||||
#define __NR_poll 168
|
|
||||||
#define __NR_nfsservctl 169
|
|
||||||
#define __NR_setresgid 170
|
|
||||||
#define __NR_getresgid 171
|
|
||||||
#define __NR_prctl 172
|
|
||||||
#define __NR_rt_sigreturn 173
|
|
||||||
#define __NR_rt_sigaction 174
|
|
||||||
#define __NR_rt_sigprocmask 175
|
|
||||||
#define __NR_rt_sigpending 176
|
|
||||||
#define __NR_rt_sigtimedwait 177
|
|
||||||
#define __NR_rt_sigqueueinfo 178
|
|
||||||
#define __NR_rt_sigsuspend 179
|
|
||||||
#define __NR_pread64 180
|
|
||||||
#define __NR_pwrite64 181
|
|
||||||
#define __NR_chown 182
|
|
||||||
#define __NR_getcwd 183
|
|
||||||
#define __NR_capget 184
|
|
||||||
#define __NR_capset 185
|
|
||||||
#define __NR_sigaltstack 186
|
|
||||||
#define __NR_sendfile 187
|
|
||||||
#define __NR_vfork 190
|
|
||||||
#define __NR_ugetrlimit 191
|
|
||||||
#define __NR_mmap2 192
|
|
||||||
#define __NR_truncate64 193
|
|
||||||
#define __NR_ftruncate64 194
|
|
||||||
#define __NR_stat64 195
|
|
||||||
#define __NR_lstat64 196
|
|
||||||
#define __NR_fstat64 197
|
|
||||||
#define __NR_lchown32 198
|
|
||||||
#define __NR_getuid32 199
|
|
||||||
#define __NR_getgid32 200
|
|
||||||
#define __NR_geteuid32 201
|
|
||||||
#define __NR_getegid32 202
|
|
||||||
#define __NR_setreuid32 203
|
|
||||||
#define __NR_setregid32 204
|
|
||||||
#define __NR_getgroups32 205
|
|
||||||
#define __NR_setgroups32 206
|
|
||||||
#define __NR_fchown32 207
|
|
||||||
#define __NR_setresuid32 208
|
|
||||||
#define __NR_getresuid32 209
|
|
||||||
#define __NR_setresgid32 210
|
|
||||||
#define __NR_getresgid32 211
|
|
||||||
#define __NR_chown32 212
|
|
||||||
#define __NR_setuid32 213
|
|
||||||
#define __NR_setgid32 214
|
|
||||||
#define __NR_setfsuid32 215
|
|
||||||
#define __NR_setfsgid32 216
|
|
||||||
#define __NR_getdents64 217
|
|
||||||
#define __NR_pivot_root 218
|
|
||||||
#define __NR_mincore 219
|
|
||||||
#define __NR_madvise 220
|
|
||||||
#define __NR_fcntl64 221
|
|
||||||
#define __NR_gettid 224
|
|
||||||
#define __NR_readahead 225
|
|
||||||
#define __NR_setxattr 226
|
|
||||||
#define __NR_lsetxattr 227
|
|
||||||
#define __NR_fsetxattr 228
|
|
||||||
#define __NR_getxattr 229
|
|
||||||
#define __NR_lgetxattr 230
|
|
||||||
#define __NR_fgetxattr 231
|
|
||||||
#define __NR_listxattr 232
|
|
||||||
#define __NR_llistxattr 233
|
|
||||||
#define __NR_flistxattr 234
|
|
||||||
#define __NR_removexattr 235
|
|
||||||
#define __NR_lremovexattr 236
|
|
||||||
#define __NR_fremovexattr 237
|
|
||||||
#define __NR_tkill 238
|
|
||||||
#define __NR_sendfile64 239
|
|
||||||
#define __NR_futex 240
|
|
||||||
#define __NR_sched_setaffinity 241
|
|
||||||
#define __NR_sched_getaffinity 242
|
|
||||||
#define __NR_io_setup 243
|
|
||||||
#define __NR_io_destroy 244
|
|
||||||
#define __NR_io_getevents 245
|
|
||||||
#define __NR_io_submit 246
|
|
||||||
#define __NR_io_cancel 247
|
|
||||||
#define __NR_exit_group 248
|
|
||||||
#define __NR_lookup_dcookie 249
|
|
||||||
#define __NR_epoll_create 250
|
|
||||||
#define __NR_epoll_ctl 251
|
|
||||||
#define __NR_epoll_wait 252
|
|
||||||
#define __NR_remap_file_pages 253
|
|
||||||
#define __NR_set_tid_address 256
|
|
||||||
#define __NR_timer_create 257
|
|
||||||
#define __NR_timer_settime32 258
|
|
||||||
#define __NR_timer_gettime32 259
|
|
||||||
#define __NR_timer_getoverrun 260
|
|
||||||
#define __NR_timer_delete 261
|
|
||||||
#define __NR_clock_settime32 262
|
|
||||||
#define __NR_clock_gettime32 263
|
|
||||||
#define __NR_clock_getres_time32 264
|
|
||||||
#define __NR_clock_nanosleep_time32 265
|
|
||||||
#define __NR_statfs64 266
|
|
||||||
#define __NR_fstatfs64 267
|
|
||||||
#define __NR_tgkill 268
|
|
||||||
#define __NR_utimes 269
|
|
||||||
#define __NR_fadvise64_64 270
|
|
||||||
#define __NR_arm_fadvise64_64 270
|
|
||||||
#define __NR_pciconfig_iobase 271
|
|
||||||
#define __NR_pciconfig_read 272
|
|
||||||
#define __NR_pciconfig_write 273
|
|
||||||
#define __NR_mq_open 274
|
|
||||||
#define __NR_mq_unlink 275
|
|
||||||
#define __NR_mq_timedsend 276
|
|
||||||
#define __NR_mq_timedreceive 277
|
|
||||||
#define __NR_mq_notify 278
|
|
||||||
#define __NR_mq_getsetattr 279
|
|
||||||
#define __NR_waitid 280
|
|
||||||
#define __NR_socket 281
|
|
||||||
#define __NR_bind 282
|
|
||||||
#define __NR_connect 283
|
|
||||||
#define __NR_listen 284
|
|
||||||
#define __NR_accept 285
|
|
||||||
#define __NR_getsockname 286
|
|
||||||
#define __NR_getpeername 287
|
|
||||||
#define __NR_socketpair 288
|
|
||||||
#define __NR_send 289
|
|
||||||
#define __NR_sendto 290
|
|
||||||
#define __NR_recv 291
|
|
||||||
#define __NR_recvfrom 292
|
|
||||||
#define __NR_shutdown 293
|
|
||||||
#define __NR_setsockopt 294
|
|
||||||
#define __NR_getsockopt 295
|
|
||||||
#define __NR_sendmsg 296
|
|
||||||
#define __NR_recvmsg 297
|
|
||||||
#define __NR_semop 298
|
|
||||||
#define __NR_semget 299
|
|
||||||
#define __NR_semctl 300
|
|
||||||
#define __NR_msgsnd 301
|
|
||||||
#define __NR_msgrcv 302
|
|
||||||
#define __NR_msgget 303
|
|
||||||
#define __NR_msgctl 304
|
|
||||||
#define __NR_shmat 305
|
|
||||||
#define __NR_shmdt 306
|
|
||||||
#define __NR_shmget 307
|
|
||||||
#define __NR_shmctl 308
|
|
||||||
#define __NR_add_key 309
|
|
||||||
#define __NR_request_key 310
|
|
||||||
#define __NR_keyctl 311
|
|
||||||
#define __NR_semtimedop 312
|
|
||||||
#define __NR_vserver 313
|
|
||||||
#define __NR_ioprio_set 314
|
|
||||||
#define __NR_ioprio_get 315
|
|
||||||
#define __NR_inotify_init 316
|
|
||||||
#define __NR_inotify_add_watch 317
|
|
||||||
#define __NR_inotify_rm_watch 318
|
|
||||||
#define __NR_mbind 319
|
|
||||||
#define __NR_get_mempolicy 320
|
|
||||||
#define __NR_set_mempolicy 321
|
|
||||||
#define __NR_openat 322
|
|
||||||
#define __NR_mkdirat 323
|
|
||||||
#define __NR_mknodat 324
|
|
||||||
#define __NR_fchownat 325
|
|
||||||
#define __NR_futimesat 326
|
|
||||||
#define __NR_fstatat64 327
|
|
||||||
#define __NR_unlinkat 328
|
|
||||||
#define __NR_renameat 329
|
|
||||||
#define __NR_linkat 330
|
|
||||||
#define __NR_symlinkat 331
|
|
||||||
#define __NR_readlinkat 332
|
|
||||||
#define __NR_fchmodat 333
|
|
||||||
#define __NR_faccessat 334
|
|
||||||
#define __NR_pselect6 335
|
|
||||||
#define __NR_ppoll 336
|
|
||||||
#define __NR_unshare 337
|
|
||||||
#define __NR_set_robust_list 338
|
|
||||||
#define __NR_get_robust_list 339
|
|
||||||
#define __NR_splice 340
|
|
||||||
#define __NR_sync_file_range2 341
|
|
||||||
#define __NR_arm_sync_file_range 341
|
|
||||||
#define __NR_tee 342
|
|
||||||
#define __NR_vmsplice 343
|
|
||||||
#define __NR_move_pages 344
|
|
||||||
#define __NR_getcpu 345
|
|
||||||
#define __NR_epoll_pwait 346
|
|
||||||
#define __NR_kexec_load 347
|
|
||||||
#define __NR_utimensat 348
|
|
||||||
#define __NR_signalfd 349
|
|
||||||
#define __NR_timerfd_create 350
|
|
||||||
#define __NR_eventfd 351
|
|
||||||
#define __NR_fallocate 352
|
|
||||||
#define __NR_timerfd_settime32 353
|
|
||||||
#define __NR_timerfd_gettime32 354
|
|
||||||
#define __NR_signalfd4 355
|
|
||||||
#define __NR_eventfd2 356
|
|
||||||
#define __NR_epoll_create1 357
|
|
||||||
#define __NR_dup3 358
|
|
||||||
#define __NR_pipe2 359
|
|
||||||
#define __NR_inotify_init1 360
|
|
||||||
#define __NR_preadv 361
|
|
||||||
#define __NR_pwritev 362
|
|
||||||
#define __NR_rt_tgsigqueueinfo 363
|
|
||||||
#define __NR_perf_event_open 364
|
|
||||||
#define __NR_recvmmsg 365
|
|
||||||
#define __NR_accept4 366
|
|
||||||
#define __NR_fanotify_init 367
|
|
||||||
#define __NR_fanotify_mark 368
|
|
||||||
#define __NR_prlimit64 369
|
|
||||||
#define __NR_name_to_handle_at 370
|
|
||||||
#define __NR_open_by_handle_at 371
|
|
||||||
#define __NR_clock_adjtime 372
|
|
||||||
#define __NR_syncfs 373
|
|
||||||
#define __NR_sendmmsg 374
|
|
||||||
#define __NR_setns 375
|
|
||||||
#define __NR_process_vm_readv 376
|
|
||||||
#define __NR_process_vm_writev 377
|
|
||||||
#define __NR_kcmp 378
|
|
||||||
#define __NR_finit_module 379
|
|
||||||
#define __NR_sched_setattr 380
|
|
||||||
#define __NR_sched_getattr 381
|
|
||||||
#define __NR_renameat2 382
|
|
||||||
#define __NR_seccomp 383
|
|
||||||
#define __NR_getrandom 384
|
|
||||||
#define __NR_memfd_create 385
|
|
||||||
#define __NR_bpf 386
|
|
||||||
#define __NR_execveat 387
|
|
||||||
#define __NR_userfaultfd 388
|
|
||||||
#define __NR_membarrier 389
|
|
||||||
#define __NR_mlock2 390
|
|
||||||
#define __NR_copy_file_range 391
|
|
||||||
#define __NR_preadv2 392
|
|
||||||
#define __NR_pwritev2 393
|
|
||||||
#define __NR_pkey_mprotect 394
|
|
||||||
#define __NR_pkey_alloc 395
|
|
||||||
#define __NR_pkey_free 396
|
|
||||||
#define __NR_statx 397
|
|
||||||
#define __NR_rseq 398
|
|
||||||
#define __NR_io_pgetevents 399
|
|
||||||
#define __NR_migrate_pages 400
|
|
||||||
#define __NR_kexec_file_load 401
|
|
||||||
#define __NR_clock_gettime64 403
|
|
||||||
#define __NR_clock_settime64 404
|
|
||||||
#define __NR_clock_adjtime64 405
|
|
||||||
#define __NR_clock_getres_time64 406
|
|
||||||
#define __NR_clock_nanosleep_time64 407
|
|
||||||
#define __NR_timer_gettime64 408
|
|
||||||
#define __NR_timer_settime64 409
|
|
||||||
#define __NR_timerfd_gettime64 410
|
|
||||||
#define __NR_timerfd_settime64 411
|
|
||||||
#define __NR_utimensat_time64 412
|
|
||||||
#define __NR_pselect6_time64 413
|
|
||||||
#define __NR_ppoll_time64 414
|
|
||||||
#define __NR_io_pgetevents_time64 416
|
|
||||||
#define __NR_recvmmsg_time64 417
|
|
||||||
#define __NR_mq_timedsend_time64 418
|
|
||||||
#define __NR_mq_timedreceive_time64 419
|
|
||||||
#define __NR_semtimedop_time64 420
|
|
||||||
#define __NR_rt_sigtimedwait_time64 421
|
|
||||||
#define __NR_futex_time64 422
|
|
||||||
#define __NR_sched_rr_get_interval_time64 423
|
|
||||||
#define __NR_pidfd_send_signal 424
|
|
||||||
#define __NR_io_uring_setup 425
|
|
||||||
#define __NR_io_uring_enter 426
|
|
||||||
#define __NR_io_uring_register 427
|
|
||||||
#define __NR_open_tree 428
|
|
||||||
#define __NR_move_mount 429
|
|
||||||
#define __NR_fsopen 430
|
|
||||||
#define __NR_fsconfig 431
|
|
||||||
#define __NR_fsmount 432
|
|
||||||
#define __NR_fspick 433
|
|
||||||
#define __NR_pidfd_open 434
|
|
||||||
#define __NR_clone3 435
|
|
||||||
#define __NR_close_range 436
|
|
||||||
#define __NR_openat2 437
|
|
||||||
#define __NR_pidfd_getfd 438
|
|
||||||
#define __NR_faccessat2 439
|
|
||||||
#define __NR_process_madvise 440
|
|
||||||
#define __NR_epoll_pwait2 441
|
|
||||||
#define __NR_mount_setattr 442
|
|
||||||
#define __NR_landlock_create_ruleset 444
|
|
||||||
#define __NR_landlock_add_rule 445
|
|
||||||
#define __NR_landlock_restrict_self 446
|
|
||||||
#define __NR_process_mrelease 448
|
|
||||||
#define __NR_futex_waitv 449
|
|
||||||
#define __NR_set_mempolicy_home_node 450
|
|
||||||
#define __NR_cachestat 451
|
|
||||||
#define __NR_fchmodat2 452
|
|
||||||
|
|
||||||
#define __ARM_NR_breakpoint 0x0f0001
|
|
||||||
#define __ARM_NR_cacheflush 0x0f0002
|
|
||||||
#define __ARM_NR_usr26 0x0f0003
|
|
||||||
#define __ARM_NR_usr32 0x0f0004
|
|
||||||
#define __ARM_NR_set_tls 0x0f0005
|
|
||||||
#define __ARM_NR_get_tls 0x0f0006
|
|
||||||
|
|
|
@ -1,36 +0,0 @@
|
||||||
typedef struct user_fpregs {
|
|
||||||
struct fp_reg {
|
|
||||||
unsigned sign1:1;
|
|
||||||
unsigned unused:15;
|
|
||||||
unsigned sign2:1;
|
|
||||||
unsigned exponent:14;
|
|
||||||
unsigned j:1;
|
|
||||||
unsigned mantissa1:31;
|
|
||||||
unsigned mantissa0:32;
|
|
||||||
} fpregs[8];
|
|
||||||
unsigned fpsr:32;
|
|
||||||
unsigned fpcr:32;
|
|
||||||
unsigned char ftype[8];
|
|
||||||
unsigned int init_flag;
|
|
||||||
} elf_fpregset_t;
|
|
||||||
|
|
||||||
struct user_regs {
|
|
||||||
unsigned long uregs[18];
|
|
||||||
};
|
|
||||||
#define ELF_NGREG 18
|
|
||||||
typedef unsigned long elf_greg_t, elf_gregset_t[ELF_NGREG];
|
|
||||||
|
|
||||||
struct user {
|
|
||||||
struct user_regs regs;
|
|
||||||
int u_fpvalid;
|
|
||||||
unsigned long u_tsize, u_dsize, u_ssize;
|
|
||||||
unsigned long start_code, start_stack;
|
|
||||||
long signal;
|
|
||||||
int reserved;
|
|
||||||
struct user_regs *u_ar0;
|
|
||||||
unsigned long magic;
|
|
||||||
char u_comm[32];
|
|
||||||
int u_debugreg[8];
|
|
||||||
struct user_fpregs u_fp;
|
|
||||||
struct user_fpregs *u_fp0;
|
|
||||||
};
|
|
|
@ -1,18 +0,0 @@
|
||||||
__asm__(
|
|
||||||
".text \n"
|
|
||||||
".global " START " \n"
|
|
||||||
".type " START ",%function \n"
|
|
||||||
START ": \n"
|
|
||||||
" mov fp, #0 \n"
|
|
||||||
" mov lr, #0 \n"
|
|
||||||
" ldr a2, 1f \n"
|
|
||||||
" add a2, pc, a2 \n"
|
|
||||||
" mov a1, sp \n"
|
|
||||||
"2: and ip, a1, #-16 \n"
|
|
||||||
" mov sp, ip \n"
|
|
||||||
" bl " START "_c \n"
|
|
||||||
".weak _DYNAMIC \n"
|
|
||||||
".hidden _DYNAMIC \n"
|
|
||||||
".align 2 \n"
|
|
||||||
"1: .word _DYNAMIC-2b \n"
|
|
||||||
);
|
|
|
@ -1,21 +0,0 @@
|
||||||
struct kstat {
|
|
||||||
dev_t st_dev;
|
|
||||||
int __st_dev_padding;
|
|
||||||
long __st_ino_truncated;
|
|
||||||
mode_t st_mode;
|
|
||||||
nlink_t st_nlink;
|
|
||||||
uid_t st_uid;
|
|
||||||
gid_t st_gid;
|
|
||||||
dev_t st_rdev;
|
|
||||||
int __st_rdev_padding;
|
|
||||||
off_t st_size;
|
|
||||||
blksize_t st_blksize;
|
|
||||||
blkcnt_t st_blocks;
|
|
||||||
long st_atime_sec;
|
|
||||||
long st_atime_nsec;
|
|
||||||
long st_mtime_sec;
|
|
||||||
long st_mtime_nsec;
|
|
||||||
long st_ctime_sec;
|
|
||||||
long st_ctime_nsec;
|
|
||||||
ino_t st_ino;
|
|
||||||
};
|
|
|
@ -1,32 +0,0 @@
|
||||||
#if ((__ARM_ARCH_6K__ || __ARM_ARCH_6KZ__ || __ARM_ARCH_6ZK__) && !__thumb__) \
|
|
||||||
|| __ARM_ARCH_7A__ || __ARM_ARCH_7R__ || __ARM_ARCH >= 7
|
|
||||||
|
|
||||||
static inline uintptr_t __get_tp()
|
|
||||||
{
|
|
||||||
uintptr_t tp;
|
|
||||||
__asm__ ( "mrc p15,0,%0,c13,c0,3" : "=r"(tp) );
|
|
||||||
return tp;
|
|
||||||
}
|
|
||||||
|
|
||||||
#else
|
|
||||||
|
|
||||||
#if __ARM_ARCH_4__ || __ARM_ARCH_4T__ || __ARM_ARCH == 4
|
|
||||||
#define BLX "mov lr,pc\n\tbx"
|
|
||||||
#else
|
|
||||||
#define BLX "blx"
|
|
||||||
#endif
|
|
||||||
|
|
||||||
static inline uintptr_t __get_tp()
|
|
||||||
{
|
|
||||||
extern hidden uintptr_t __a_gettp_ptr;
|
|
||||||
register uintptr_t tp __asm__("r0");
|
|
||||||
__asm__ ( BLX " %1" : "=r"(tp) : "r"(__a_gettp_ptr) : "cc", "lr" );
|
|
||||||
return tp;
|
|
||||||
}
|
|
||||||
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#define TLS_ABOVE_TP
|
|
||||||
#define GAP_ABOVE_TP 8
|
|
||||||
|
|
||||||
#define MC_PC arm_pc
|
|
|
@ -1,32 +0,0 @@
|
||||||
#if __BYTE_ORDER == __BIG_ENDIAN
|
|
||||||
#define ENDIAN_SUFFIX "eb"
|
|
||||||
#else
|
|
||||||
#define ENDIAN_SUFFIX ""
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if __ARM_PCS_VFP
|
|
||||||
#define FP_SUFFIX "hf"
|
|
||||||
#else
|
|
||||||
#define FP_SUFFIX ""
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#define LDSO_ARCH "arm" ENDIAN_SUFFIX FP_SUFFIX
|
|
||||||
|
|
||||||
#define NO_LEGACY_INITFINI
|
|
||||||
|
|
||||||
#define TPOFF_K 0
|
|
||||||
|
|
||||||
#define REL_SYMBOLIC R_ARM_ABS32
|
|
||||||
#define REL_GOT R_ARM_GLOB_DAT
|
|
||||||
#define REL_PLT R_ARM_JUMP_SLOT
|
|
||||||
#define REL_RELATIVE R_ARM_RELATIVE
|
|
||||||
#define REL_COPY R_ARM_COPY
|
|
||||||
#define REL_DTPMOD R_ARM_TLS_DTPMOD32
|
|
||||||
#define REL_DTPOFF R_ARM_TLS_DTPOFF32
|
|
||||||
#define REL_TPOFF R_ARM_TLS_TPOFF32
|
|
||||||
#define REL_TLSDESC R_ARM_TLS_DESC
|
|
||||||
|
|
||||||
#define TLSDESC_BACKWARDS 1
|
|
||||||
|
|
||||||
#define CRTJMP(pc,sp) __asm__ __volatile__( \
|
|
||||||
"mov sp,%1 ; bx %0" : : "r"(pc), "r"(sp) : "memory" )
|
|
|
@ -1,110 +0,0 @@
|
||||||
#define __SYSCALL_LL_E(x) \
|
|
||||||
((union { long long ll; long l[2]; }){ .ll = x }).l[0], \
|
|
||||||
((union { long long ll; long l[2]; }){ .ll = x }).l[1]
|
|
||||||
#define __SYSCALL_LL_O(x) 0, __SYSCALL_LL_E((x))
|
|
||||||
|
|
||||||
#ifdef __thumb__
|
|
||||||
|
|
||||||
/* Avoid use of r7 in asm constraints when producing thumb code,
|
|
||||||
* since it's reserved as frame pointer and might not be supported. */
|
|
||||||
#define __ASM____R7__
|
|
||||||
#define __asm_syscall(...) do { \
|
|
||||||
__asm__ __volatile__ ( "mov %1,r7 ; mov r7,%2 ; svc 0 ; mov r7,%1" \
|
|
||||||
: "=r"(r0), "=&r"((int){0}) : __VA_ARGS__ : "memory"); \
|
|
||||||
return r0; \
|
|
||||||
} while (0)
|
|
||||||
|
|
||||||
#else
|
|
||||||
|
|
||||||
#define __ASM____R7__ __asm__("r7")
|
|
||||||
#define __asm_syscall(...) do { \
|
|
||||||
__asm__ __volatile__ ( "svc 0" \
|
|
||||||
: "=r"(r0) : __VA_ARGS__ : "memory"); \
|
|
||||||
return r0; \
|
|
||||||
} while (0)
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/* For thumb2, we can allow 8-bit immediate syscall numbers, saving a
|
|
||||||
* register in the above dance around r7. Does not work for thumb1 where
|
|
||||||
* only movs, not mov, supports immediates, and we can't use movs because
|
|
||||||
* it doesn't support high regs. */
|
|
||||||
#ifdef __thumb2__
|
|
||||||
#define R7_OPERAND "rI"(r7)
|
|
||||||
#else
|
|
||||||
#define R7_OPERAND "r"(r7)
|
|
||||||
#endif
|
|
||||||
|
|
||||||
static inline long __syscall0(long n)
|
|
||||||
{
|
|
||||||
register long r7 __ASM____R7__ = n;
|
|
||||||
register long r0 __asm__("r0");
|
|
||||||
__asm_syscall(R7_OPERAND);
|
|
||||||
}
|
|
||||||
|
|
||||||
static inline long __syscall1(long n, long a)
|
|
||||||
{
|
|
||||||
register long r7 __ASM____R7__ = n;
|
|
||||||
register long r0 __asm__("r0") = a;
|
|
||||||
__asm_syscall(R7_OPERAND, "0"(r0));
|
|
||||||
}
|
|
||||||
|
|
||||||
static inline long __syscall2(long n, long a, long b)
|
|
||||||
{
|
|
||||||
register long r7 __ASM____R7__ = n;
|
|
||||||
register long r0 __asm__("r0") = a;
|
|
||||||
register long r1 __asm__("r1") = b;
|
|
||||||
__asm_syscall(R7_OPERAND, "0"(r0), "r"(r1));
|
|
||||||
}
|
|
||||||
|
|
||||||
static inline long __syscall3(long n, long a, long b, long c)
|
|
||||||
{
|
|
||||||
register long r7 __ASM____R7__ = n;
|
|
||||||
register long r0 __asm__("r0") = a;
|
|
||||||
register long r1 __asm__("r1") = b;
|
|
||||||
register long r2 __asm__("r2") = c;
|
|
||||||
__asm_syscall(R7_OPERAND, "0"(r0), "r"(r1), "r"(r2));
|
|
||||||
}
|
|
||||||
|
|
||||||
static inline long __syscall4(long n, long a, long b, long c, long d)
|
|
||||||
{
|
|
||||||
register long r7 __ASM____R7__ = n;
|
|
||||||
register long r0 __asm__("r0") = a;
|
|
||||||
register long r1 __asm__("r1") = b;
|
|
||||||
register long r2 __asm__("r2") = c;
|
|
||||||
register long r3 __asm__("r3") = d;
|
|
||||||
__asm_syscall(R7_OPERAND, "0"(r0), "r"(r1), "r"(r2), "r"(r3));
|
|
||||||
}
|
|
||||||
|
|
||||||
static inline long __syscall5(long n, long a, long b, long c, long d, long e)
|
|
||||||
{
|
|
||||||
register long r7 __ASM____R7__ = n;
|
|
||||||
register long r0 __asm__("r0") = a;
|
|
||||||
register long r1 __asm__("r1") = b;
|
|
||||||
register long r2 __asm__("r2") = c;
|
|
||||||
register long r3 __asm__("r3") = d;
|
|
||||||
register long r4 __asm__("r4") = e;
|
|
||||||
__asm_syscall(R7_OPERAND, "0"(r0), "r"(r1), "r"(r2), "r"(r3), "r"(r4));
|
|
||||||
}
|
|
||||||
|
|
||||||
static inline long __syscall6(long n, long a, long b, long c, long d, long e, long f)
|
|
||||||
{
|
|
||||||
register long r7 __ASM____R7__ = n;
|
|
||||||
register long r0 __asm__("r0") = a;
|
|
||||||
register long r1 __asm__("r1") = b;
|
|
||||||
register long r2 __asm__("r2") = c;
|
|
||||||
register long r3 __asm__("r3") = d;
|
|
||||||
register long r4 __asm__("r4") = e;
|
|
||||||
register long r5 __asm__("r5") = f;
|
|
||||||
__asm_syscall(R7_OPERAND, "0"(r0), "r"(r1), "r"(r2), "r"(r3), "r"(r4), "r"(r5));
|
|
||||||
}
|
|
||||||
|
|
||||||
#define SYSCALL_FADVISE_6_ARG
|
|
||||||
|
|
||||||
#define SYSCALL_IPC_BROKEN_MODE
|
|
||||||
|
|
||||||
#define VDSO_USEFUL
|
|
||||||
#define VDSO_CGT32_SYM "__vdso_clock_gettime"
|
|
||||||
#define VDSO_CGT32_VER "LINUX_2.6"
|
|
||||||
#define VDSO_CGT_SYM "__vdso_clock_gettime64"
|
|
||||||
#define VDSO_CGT_VER "LINUX_2.6"
|
|
||||||
#define VDSO_CGT_WORKAROUND 1
|
|
|
@ -1,11 +0,0 @@
|
||||||
#define _DIRENT_HAVE_D_RECLEN
|
|
||||||
#define _DIRENT_HAVE_D_OFF
|
|
||||||
#define _DIRENT_HAVE_D_TYPE
|
|
||||||
|
|
||||||
struct dirent {
|
|
||||||
ino_t d_ino;
|
|
||||||
off_t d_off;
|
|
||||||
unsigned short d_reclen;
|
|
||||||
unsigned char d_type;
|
|
||||||
char d_name[256];
|
|
||||||
};
|
|
|
@ -1,10 +0,0 @@
|
||||||
#define FE_ALL_EXCEPT 0
|
|
||||||
#define FE_TONEAREST 0
|
|
||||||
|
|
||||||
typedef unsigned long fexcept_t;
|
|
||||||
|
|
||||||
typedef struct {
|
|
||||||
unsigned long __cw;
|
|
||||||
} fenv_t;
|
|
||||||
|
|
||||||
#define FE_DFL_ENV ((const fenv_t *) -1)
|
|
|
@ -1,115 +0,0 @@
|
||||||
#define _IOC(a,b,c,d) ( ((a)<<30) | ((b)<<8) | (c) | ((d)<<16) )
|
|
||||||
#define _IOC_NONE 0U
|
|
||||||
#define _IOC_WRITE 1U
|
|
||||||
#define _IOC_READ 2U
|
|
||||||
|
|
||||||
#define _IO(a,b) _IOC(_IOC_NONE,(a),(b),0)
|
|
||||||
#define _IOW(a,b,c) _IOC(_IOC_WRITE,(a),(b),sizeof(c))
|
|
||||||
#define _IOR(a,b,c) _IOC(_IOC_READ,(a),(b),sizeof(c))
|
|
||||||
#define _IOWR(a,b,c) _IOC(_IOC_READ|_IOC_WRITE,(a),(b),sizeof(c))
|
|
||||||
|
|
||||||
#define TCGETS 0x5401
|
|
||||||
#define TCSETS 0x5402
|
|
||||||
#define TCSETSW 0x5403
|
|
||||||
#define TCSETSF 0x5404
|
|
||||||
#define TCGETA 0x5405
|
|
||||||
#define TCSETA 0x5406
|
|
||||||
#define TCSETAW 0x5407
|
|
||||||
#define TCSETAF 0x5408
|
|
||||||
#define TCSBRK 0x5409
|
|
||||||
#define TCXONC 0x540A
|
|
||||||
#define TCFLSH 0x540B
|
|
||||||
#define TIOCEXCL 0x540C
|
|
||||||
#define TIOCNXCL 0x540D
|
|
||||||
#define TIOCSCTTY 0x540E
|
|
||||||
#define TIOCGPGRP 0x540F
|
|
||||||
#define TIOCSPGRP 0x5410
|
|
||||||
#define TIOCOUTQ 0x5411
|
|
||||||
#define TIOCSTI 0x5412
|
|
||||||
#define TIOCGWINSZ 0x5413
|
|
||||||
#define TIOCSWINSZ 0x5414
|
|
||||||
#define TIOCMGET 0x5415
|
|
||||||
#define TIOCMBIS 0x5416
|
|
||||||
#define TIOCMBIC 0x5417
|
|
||||||
#define TIOCMSET 0x5418
|
|
||||||
#define TIOCGSOFTCAR 0x5419
|
|
||||||
#define TIOCSSOFTCAR 0x541A
|
|
||||||
#define FIONREAD 0x541B
|
|
||||||
#define TIOCINQ FIONREAD
|
|
||||||
#define TIOCLINUX 0x541C
|
|
||||||
#define TIOCCONS 0x541D
|
|
||||||
#define TIOCGSERIAL 0x541E
|
|
||||||
#define TIOCSSERIAL 0x541F
|
|
||||||
#define TIOCPKT 0x5420
|
|
||||||
#define FIONBIO 0x5421
|
|
||||||
#define TIOCNOTTY 0x5422
|
|
||||||
#define TIOCSETD 0x5423
|
|
||||||
#define TIOCGETD 0x5424
|
|
||||||
#define TCSBRKP 0x5425
|
|
||||||
#define TIOCSBRK 0x5427
|
|
||||||
#define TIOCCBRK 0x5428
|
|
||||||
#define TIOCGSID 0x5429
|
|
||||||
#define TIOCGRS485 0x542E
|
|
||||||
#define TIOCSRS485 0x542F
|
|
||||||
#define TIOCGPTN 0x80045430
|
|
||||||
#define TIOCSPTLCK 0x40045431
|
|
||||||
#define TIOCGDEV 0x80045432
|
|
||||||
#define TCGETX 0x5432
|
|
||||||
#define TCSETX 0x5433
|
|
||||||
#define TCSETXF 0x5434
|
|
||||||
#define TCSETXW 0x5435
|
|
||||||
#define TIOCSIG 0x40045436
|
|
||||||
#define TIOCVHANGUP 0x5437
|
|
||||||
#define TIOCGPKT 0x80045438
|
|
||||||
#define TIOCGPTLCK 0x80045439
|
|
||||||
#define TIOCGEXCL 0x80045440
|
|
||||||
#define TIOCGPTPEER 0x5441
|
|
||||||
#define TIOCGISO7816 0x80285442
|
|
||||||
#define TIOCSISO7816 0xc0285443
|
|
||||||
|
|
||||||
#define FIONCLEX 0x5450
|
|
||||||
#define FIOCLEX 0x5451
|
|
||||||
#define FIOASYNC 0x5452
|
|
||||||
#define TIOCSERCONFIG 0x5453
|
|
||||||
#define TIOCSERGWILD 0x5454
|
|
||||||
#define TIOCSERSWILD 0x5455
|
|
||||||
#define TIOCGLCKTRMIOS 0x5456
|
|
||||||
#define TIOCSLCKTRMIOS 0x5457
|
|
||||||
#define TIOCSERGSTRUCT 0x5458
|
|
||||||
#define TIOCSERGETLSR 0x5459
|
|
||||||
#define TIOCSERGETMULTI 0x545A
|
|
||||||
#define TIOCSERSETMULTI 0x545B
|
|
||||||
|
|
||||||
#define TIOCMIWAIT 0x545C
|
|
||||||
#define TIOCGICOUNT 0x545D
|
|
||||||
#define FIOQSIZE 0x5460
|
|
||||||
|
|
||||||
#define TIOCM_LE 0x001
|
|
||||||
#define TIOCM_DTR 0x002
|
|
||||||
#define TIOCM_RTS 0x004
|
|
||||||
#define TIOCM_ST 0x008
|
|
||||||
#define TIOCM_SR 0x010
|
|
||||||
#define TIOCM_CTS 0x020
|
|
||||||
#define TIOCM_CAR 0x040
|
|
||||||
#define TIOCM_RNG 0x080
|
|
||||||
#define TIOCM_DSR 0x100
|
|
||||||
#define TIOCM_CD TIOCM_CAR
|
|
||||||
#define TIOCM_RI TIOCM_RNG
|
|
||||||
#define TIOCM_OUT1 0x2000
|
|
||||||
#define TIOCM_OUT2 0x4000
|
|
||||||
#define TIOCM_LOOP 0x8000
|
|
||||||
|
|
||||||
#define FIOSETOWN 0x8901
|
|
||||||
#define SIOCSPGRP 0x8902
|
|
||||||
#define FIOGETOWN 0x8903
|
|
||||||
#define SIOCGPGRP 0x8904
|
|
||||||
#define SIOCATMARK 0x8905
|
|
||||||
#if __LONG_MAX == 0x7fffffff
|
|
||||||
#define SIOCGSTAMP _IOR(0x89, 6, char[16])
|
|
||||||
#define SIOCGSTAMPNS _IOR(0x89, 7, char[16])
|
|
||||||
#else
|
|
||||||
#define SIOCGSTAMP 0x8906
|
|
||||||
#define SIOCGSTAMPNS 0x8907
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#include <bits/ioctl_fix.h>
|
|
|
@ -1 +0,0 @@
|
||||||
#define IPC_STAT 2
|
|
|
@ -1 +0,0 @@
|
||||||
#include <linux/kd.h>
|
|
|
@ -1 +0,0 @@
|
||||||
typedef uint32_t Elf_Symndx;
|
|
|
@ -1,14 +0,0 @@
|
||||||
struct semid_ds {
|
|
||||||
struct ipc_perm sem_perm;
|
|
||||||
time_t sem_otime;
|
|
||||||
time_t sem_ctime;
|
|
||||||
#if __BYTE_ORDER == __LITTLE_ENDIAN
|
|
||||||
unsigned short sem_nsems;
|
|
||||||
char __sem_nsems_pad[sizeof(long)-sizeof(short)];
|
|
||||||
#else
|
|
||||||
char __sem_nsems_pad[sizeof(long)-sizeof(short)];
|
|
||||||
unsigned short sem_nsems;
|
|
||||||
#endif
|
|
||||||
long __unused3;
|
|
||||||
long __unused4;
|
|
||||||
};
|
|
|
@ -1,24 +0,0 @@
|
||||||
#define SHMLBA 4096
|
|
||||||
|
|
||||||
struct shmid_ds {
|
|
||||||
struct ipc_perm shm_perm;
|
|
||||||
size_t shm_segsz;
|
|
||||||
time_t shm_atime;
|
|
||||||
time_t shm_dtime;
|
|
||||||
time_t shm_ctime;
|
|
||||||
pid_t shm_cpid;
|
|
||||||
pid_t shm_lpid;
|
|
||||||
unsigned long shm_nattch;
|
|
||||||
unsigned long __pad1;
|
|
||||||
unsigned long __pad2;
|
|
||||||
};
|
|
||||||
|
|
||||||
struct shminfo {
|
|
||||||
unsigned long shmmax, shmmin, shmmni, shmseg, shmall, __unused[4];
|
|
||||||
};
|
|
||||||
|
|
||||||
struct shm_info {
|
|
||||||
int __used_ids;
|
|
||||||
unsigned long shm_tot, shm_rss, shm_swp;
|
|
||||||
unsigned long __swap_attempts, __swap_successes;
|
|
||||||
};
|
|
|
@ -1 +0,0 @@
|
||||||
#include <linux/soundcard.h>
|
|
|
@ -1,18 +0,0 @@
|
||||||
struct stat {
|
|
||||||
dev_t st_dev;
|
|
||||||
ino_t st_ino;
|
|
||||||
mode_t st_mode;
|
|
||||||
nlink_t st_nlink;
|
|
||||||
uid_t st_uid;
|
|
||||||
gid_t st_gid;
|
|
||||||
dev_t st_rdev;
|
|
||||||
unsigned long long __pad;
|
|
||||||
off_t st_size;
|
|
||||||
blksize_t st_blksize;
|
|
||||||
int __pad2;
|
|
||||||
blkcnt_t st_blocks;
|
|
||||||
struct timespec st_atim;
|
|
||||||
struct timespec st_mtim;
|
|
||||||
struct timespec st_ctim;
|
|
||||||
unsigned __unused[2];
|
|
||||||
};
|
|
|
@ -1,7 +0,0 @@
|
||||||
struct statfs {
|
|
||||||
unsigned long f_type, f_bsize;
|
|
||||||
fsblkcnt_t f_blocks, f_bfree, f_bavail;
|
|
||||||
fsfilcnt_t f_files, f_ffree;
|
|
||||||
fsid_t f_fsid;
|
|
||||||
unsigned long f_namelen, f_frsize, f_flags, f_spare[4];
|
|
||||||
};
|
|
|
@ -1 +0,0 @@
|
||||||
#include <linux/vt.h>
|
|
|
@ -1 +0,0 @@
|
||||||
COMPAT_SRC_DIRS = compat/time32
|
|
123
arch/i386/atomic.h
Normal file
123
arch/i386/atomic.h
Normal file
|
@ -0,0 +1,123 @@
|
||||||
|
#ifndef _INTERNAL_ATOMIC_H
|
||||||
|
#define _INTERNAL_ATOMIC_H
|
||||||
|
|
||||||
|
#include <stdint.h>
|
||||||
|
|
||||||
|
static inline int a_ctz_64(uint64_t x)
|
||||||
|
{
|
||||||
|
int r;
|
||||||
|
__asm__( "bsf %1,%0 ; jnz 1f ; bsf %2,%0 ; addl $32,%0\n1:"
|
||||||
|
: "=r"(r) : "r"((unsigned)x), "r"((unsigned)(x>>32)) );
|
||||||
|
return r;
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline int a_ctz_l(unsigned long x)
|
||||||
|
{
|
||||||
|
long r;
|
||||||
|
__asm__( "bsf %1,%0" : "=r"(r) : "r"(x) );
|
||||||
|
return r;
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline void a_and_64(volatile uint64_t *p, uint64_t v)
|
||||||
|
{
|
||||||
|
__asm__( "lock ; andl %1, (%0) ; lock ; andl %2, 4(%0)"
|
||||||
|
: : "r"((long *)p), "r"((unsigned)v), "r"((unsigned)(v>>32)) : "memory" );
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline void a_or_64(volatile uint64_t *p, uint64_t v)
|
||||||
|
{
|
||||||
|
__asm__( "lock ; orl %1, (%0) ; lock ; orl %2, 4(%0)"
|
||||||
|
: : "r"((long *)p), "r"((unsigned)v), "r"((unsigned)(v>>32)) : "memory" );
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline void a_store_l(volatile void *p, long x)
|
||||||
|
{
|
||||||
|
__asm__( "movl %1, %0" : "=m"(*(long *)p) : "r"(x) : "memory" );
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline void a_or_l(volatile void *p, long v)
|
||||||
|
{
|
||||||
|
__asm__( "lock ; orl %1, %0"
|
||||||
|
: "=m"(*(long *)p) : "r"(v) : "memory" );
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline void *a_cas_p(volatile void *p, void *t, void *s)
|
||||||
|
{
|
||||||
|
__asm__( "lock ; cmpxchg %3, %1"
|
||||||
|
: "=a"(t), "=m"(*(long *)p) : "a"(t), "r"(s) : "memory" );
|
||||||
|
return t;
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline long a_cas_l(volatile void *p, long t, long s)
|
||||||
|
{
|
||||||
|
__asm__( "lock ; cmpxchg %3, %1"
|
||||||
|
: "=a"(t), "=m"(*(long *)p) : "a"(t), "r"(s) : "memory" );
|
||||||
|
return t;
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline int a_cas(volatile int *p, int t, int s)
|
||||||
|
{
|
||||||
|
__asm__( "lock ; cmpxchg %3, %1"
|
||||||
|
: "=a"(t), "=m"(*p) : "a"(t), "r"(s) : "memory" );
|
||||||
|
return t;
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline void *a_swap_p(void *volatile *x, void *v)
|
||||||
|
{
|
||||||
|
__asm__( "xchg %0, %1" : "=r"(v), "=m"(*(void **)x) : "0"(v) : "memory" );
|
||||||
|
return v;
|
||||||
|
}
|
||||||
|
static inline long a_swap_l(volatile void *x, long v)
|
||||||
|
{
|
||||||
|
__asm__( "xchg %0, %1" : "=r"(v), "=m"(*(long *)x) : "0"(v) : "memory" );
|
||||||
|
return v;
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline void a_or(volatile void *p, int v)
|
||||||
|
{
|
||||||
|
__asm__( "lock ; orl %1, %0"
|
||||||
|
: "=m"(*(int *)p) : "r"(v) : "memory" );
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline void a_and(volatile void *p, int v)
|
||||||
|
{
|
||||||
|
__asm__( "lock ; andl %1, %0"
|
||||||
|
: "=m"(*(int *)p) : "r"(v) : "memory" );
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline int a_swap(volatile int *x, int v)
|
||||||
|
{
|
||||||
|
__asm__( "xchg %0, %1" : "=r"(v), "=m"(*x) : "0"(v) : "memory" );
|
||||||
|
return v;
|
||||||
|
}
|
||||||
|
|
||||||
|
#define a_xchg a_swap
|
||||||
|
|
||||||
|
static inline int a_fetch_add(volatile int *x, int v)
|
||||||
|
{
|
||||||
|
__asm__( "lock ; xadd %0, %1" : "=r"(v), "=m"(*x) : "0"(v) : "memory" );
|
||||||
|
return v;
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline void a_inc(volatile int *x)
|
||||||
|
{
|
||||||
|
__asm__( "lock ; incl %0" : "=m"(*x) : "m"(*x) : "memory" );
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline void a_dec(volatile int *x)
|
||||||
|
{
|
||||||
|
__asm__( "lock ; decl %0" : "=m"(*x) : "m"(*x) : "memory" );
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline void a_store(volatile int *p, int x)
|
||||||
|
{
|
||||||
|
__asm__( "movl %1, %0" : "=m"(*p) : "r"(x) : "memory" );
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline void a_spin()
|
||||||
|
{
|
||||||
|
__asm__ __volatile__( "pause" : : : "memory" );
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#endif
|
|
@ -1,108 +0,0 @@
|
||||||
#define a_cas a_cas
|
|
||||||
static inline int a_cas(volatile int *p, int t, int s)
|
|
||||||
{
|
|
||||||
__asm__ __volatile__ (
|
|
||||||
"lock ; cmpxchg %3, %1"
|
|
||||||
: "=a"(t), "=m"(*p) : "a"(t), "r"(s) : "memory" );
|
|
||||||
return t;
|
|
||||||
}
|
|
||||||
|
|
||||||
#define a_swap a_swap
|
|
||||||
static inline int a_swap(volatile int *p, int v)
|
|
||||||
{
|
|
||||||
__asm__ __volatile__(
|
|
||||||
"xchg %0, %1"
|
|
||||||
: "=r"(v), "=m"(*p) : "0"(v) : "memory" );
|
|
||||||
return v;
|
|
||||||
}
|
|
||||||
|
|
||||||
#define a_fetch_add a_fetch_add
|
|
||||||
static inline int a_fetch_add(volatile int *p, int v)
|
|
||||||
{
|
|
||||||
__asm__ __volatile__(
|
|
||||||
"lock ; xadd %0, %1"
|
|
||||||
: "=r"(v), "=m"(*p) : "0"(v) : "memory" );
|
|
||||||
return v;
|
|
||||||
}
|
|
||||||
|
|
||||||
#define a_and a_and
|
|
||||||
static inline void a_and(volatile int *p, int v)
|
|
||||||
{
|
|
||||||
__asm__ __volatile__(
|
|
||||||
"lock ; and %1, %0"
|
|
||||||
: "=m"(*p) : "r"(v) : "memory" );
|
|
||||||
}
|
|
||||||
|
|
||||||
#define a_or a_or
|
|
||||||
static inline void a_or(volatile int *p, int v)
|
|
||||||
{
|
|
||||||
__asm__ __volatile__(
|
|
||||||
"lock ; or %1, %0"
|
|
||||||
: "=m"(*p) : "r"(v) : "memory" );
|
|
||||||
}
|
|
||||||
|
|
||||||
#define a_inc a_inc
|
|
||||||
static inline void a_inc(volatile int *p)
|
|
||||||
{
|
|
||||||
__asm__ __volatile__(
|
|
||||||
"lock ; incl %0"
|
|
||||||
: "=m"(*p) : "m"(*p) : "memory" );
|
|
||||||
}
|
|
||||||
|
|
||||||
#define a_dec a_dec
|
|
||||||
static inline void a_dec(volatile int *p)
|
|
||||||
{
|
|
||||||
__asm__ __volatile__(
|
|
||||||
"lock ; decl %0"
|
|
||||||
: "=m"(*p) : "m"(*p) : "memory" );
|
|
||||||
}
|
|
||||||
|
|
||||||
#define a_store a_store
|
|
||||||
static inline void a_store(volatile int *p, int x)
|
|
||||||
{
|
|
||||||
__asm__ __volatile__(
|
|
||||||
"mov %1, %0 ; lock ; orl $0,(%%esp)"
|
|
||||||
: "=m"(*p) : "r"(x) : "memory" );
|
|
||||||
}
|
|
||||||
|
|
||||||
#define a_barrier a_barrier
|
|
||||||
static inline void a_barrier()
|
|
||||||
{
|
|
||||||
__asm__ __volatile__( "" : : : "memory" );
|
|
||||||
}
|
|
||||||
|
|
||||||
#define a_spin a_spin
|
|
||||||
static inline void a_spin()
|
|
||||||
{
|
|
||||||
__asm__ __volatile__( "pause" : : : "memory" );
|
|
||||||
}
|
|
||||||
|
|
||||||
#define a_crash a_crash
|
|
||||||
static inline void a_crash()
|
|
||||||
{
|
|
||||||
__asm__ __volatile__( "hlt" : : : "memory" );
|
|
||||||
}
|
|
||||||
|
|
||||||
#define a_ctz_64 a_ctz_64
|
|
||||||
static inline int a_ctz_64(uint64_t x)
|
|
||||||
{
|
|
||||||
int r;
|
|
||||||
__asm__( "bsf %1,%0 ; jnz 1f ; bsf %2,%0 ; add $32,%0\n1:"
|
|
||||||
: "=&r"(r) : "r"((unsigned)x), "r"((unsigned)(x>>32)) );
|
|
||||||
return r;
|
|
||||||
}
|
|
||||||
|
|
||||||
#define a_ctz_32 a_ctz_32
|
|
||||||
static inline int a_ctz_32(uint32_t x)
|
|
||||||
{
|
|
||||||
int r;
|
|
||||||
__asm__( "bsf %1,%0" : "=r"(r) : "r"(x) );
|
|
||||||
return r;
|
|
||||||
}
|
|
||||||
|
|
||||||
#define a_clz_32 a_clz_32
|
|
||||||
static inline int a_clz_32(uint32_t x)
|
|
||||||
{
|
|
||||||
__asm__( "bsr %1,%0 ; xor $31,%0" : "=r"(x) : "r"(x) );
|
|
||||||
return x;
|
|
||||||
}
|
|
|
@ -1,31 +0,0 @@
|
||||||
#define _REDIR_TIME64 1
|
|
||||||
#define _Addr int
|
|
||||||
#define _Int64 long long
|
|
||||||
#define _Reg int
|
|
||||||
|
|
||||||
#define __BYTE_ORDER 1234
|
|
||||||
#define __LONG_MAX 0x7fffffffL
|
|
||||||
|
|
||||||
#ifndef __cplusplus
|
|
||||||
#ifdef __WCHAR_TYPE__
|
|
||||||
TYPEDEF __WCHAR_TYPE__ wchar_t;
|
|
||||||
#else
|
|
||||||
TYPEDEF long wchar_t;
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if defined(__FLT_EVAL_METHOD__) && __FLT_EVAL_METHOD__ == 0
|
|
||||||
TYPEDEF float float_t;
|
|
||||||
TYPEDEF double double_t;
|
|
||||||
#else
|
|
||||||
TYPEDEF long double float_t;
|
|
||||||
TYPEDEF long double double_t;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if !defined(__cplusplus)
|
|
||||||
TYPEDEF struct { _Alignas(8) long long __ll; long double __ld; } max_align_t;
|
|
||||||
#elif defined(__GNUC__)
|
|
||||||
TYPEDEF struct { __attribute__((__aligned__(8))) long long __ll; long double __ld; } max_align_t;
|
|
||||||
#else
|
|
||||||
TYPEDEF struct { alignas(8) long long __ll; long double __ld; } max_align_t;
|
|
||||||
#endif
|
|
121
arch/i386/bits/alltypes.h.sh
Executable file
121
arch/i386/bits/alltypes.h.sh
Executable file
|
@ -0,0 +1,121 @@
|
||||||
|
#!/bin/sh
|
||||||
|
sed -e << EOF \
|
||||||
|
'/^TYPEDEF/s/TYPEDEF \(.*\) \([^ ]*\);$/#if defined(__NEED_\2) \&\& !defined(__DEFINED_\2)\
|
||||||
|
typedef \1 \2;\
|
||||||
|
#define __DEFINED_\2\
|
||||||
|
#endif\
|
||||||
|
/
|
||||||
|
/^STRUCT/s/STRUCT * \([^ ]*\) \(.*\);$/#if defined(__NEED_struct_\1) \&\& !defined(__DEFINED_struct_\1)\
|
||||||
|
struct \1 \2;\
|
||||||
|
#define __DEFINED_struct_\1\
|
||||||
|
#endif\
|
||||||
|
/
|
||||||
|
/^UNION/s/UNION * \([^ ]*\) \(.*\);$/#if defined(__NEED_union_\1) \&\& !defined(__DEFINED_union_\1)\
|
||||||
|
union \1 \2;\
|
||||||
|
#define __DEFINED_union_\1\
|
||||||
|
#endif\
|
||||||
|
/'
|
||||||
|
|
||||||
|
TYPEDEF unsigned size_t;
|
||||||
|
TYPEDEF int ssize_t;
|
||||||
|
TYPEDEF long ptrdiff_t;
|
||||||
|
|
||||||
|
#if __GNUC__ >= 3
|
||||||
|
TYPEDEF __builtin_va_list va_list;
|
||||||
|
#else
|
||||||
|
TYPEDEF struct __va_list * va_list;
|
||||||
|
#endif
|
||||||
|
|
||||||
|
TYPEDEF long wchar_t;
|
||||||
|
TYPEDEF long wint_t;
|
||||||
|
TYPEDEF long wctrans_t;
|
||||||
|
TYPEDEF long wctype_t;
|
||||||
|
|
||||||
|
TYPEDEF char int8_t;
|
||||||
|
TYPEDEF short int16_t;
|
||||||
|
TYPEDEF int int32_t;
|
||||||
|
TYPEDEF long long int64_t;
|
||||||
|
|
||||||
|
TYPEDEF unsigned char uint8_t;
|
||||||
|
TYPEDEF unsigned short uint16_t;
|
||||||
|
TYPEDEF unsigned int uint32_t;
|
||||||
|
TYPEDEF unsigned long long uint64_t;
|
||||||
|
|
||||||
|
TYPEDEF unsigned short __uint16_t;
|
||||||
|
TYPEDEF unsigned int __uint32_t;
|
||||||
|
TYPEDEF unsigned long long __uint64_t;
|
||||||
|
|
||||||
|
TYPEDEF int8_t int_fast8_t;
|
||||||
|
TYPEDEF int int_fast16_t;
|
||||||
|
TYPEDEF int int_fast32_t;
|
||||||
|
TYPEDEF int64_t int_fast64_t;
|
||||||
|
|
||||||
|
TYPEDEF unsigned char uint_fast8_t;
|
||||||
|
TYPEDEF unsigned int uint_fast16_t;
|
||||||
|
TYPEDEF unsigned int uint_fast32_t;
|
||||||
|
TYPEDEF uint64_t uint_fast64_t;
|
||||||
|
|
||||||
|
TYPEDEF long intptr_t;
|
||||||
|
TYPEDEF unsigned long uintptr_t;
|
||||||
|
|
||||||
|
TYPEDEF long time_t;
|
||||||
|
TYPEDEF int suseconds_t;
|
||||||
|
STRUCT timeval { time_t tv_sec; int tv_usec; };
|
||||||
|
STRUCT timespec { time_t tv_sec; long tv_nsec; };
|
||||||
|
|
||||||
|
TYPEDEF int pid_t;
|
||||||
|
TYPEDEF int id_t;
|
||||||
|
TYPEDEF int uid_t;
|
||||||
|
TYPEDEF int gid_t;
|
||||||
|
TYPEDEF int key_t;
|
||||||
|
|
||||||
|
TYPEDEF struct __pthread * pthread_t;
|
||||||
|
TYPEDEF int pthread_once_t;
|
||||||
|
TYPEDEF int pthread_key_t;
|
||||||
|
TYPEDEF int pthread_spinlock_t;
|
||||||
|
|
||||||
|
TYPEDEF struct { union { int __i[9]; size_t __s[9]; } __u; } pthread_attr_t;
|
||||||
|
TYPEDEF unsigned pthread_mutexattr_t;
|
||||||
|
TYPEDEF unsigned pthread_condattr_t;
|
||||||
|
TYPEDEF unsigned pthread_barrierattr_t;
|
||||||
|
TYPEDEF struct { unsigned __attr[2]; } pthread_rwlockattr_t;
|
||||||
|
|
||||||
|
TYPEDEF struct { union { int __i[6]; void *__p[6]; } __u; } pthread_mutex_t;
|
||||||
|
TYPEDEF struct { union { int __i[12]; void *__p[12]; } __u; } pthread_cond_t;
|
||||||
|
TYPEDEF struct { union { int __i[8]; void *__p[8]; } __u; } pthread_rwlock_t;
|
||||||
|
TYPEDEF struct { union { int __i[5]; void *__p[5]; } __u; } pthread_barrier_t;
|
||||||
|
|
||||||
|
TYPEDEF long long off_t;
|
||||||
|
|
||||||
|
TYPEDEF unsigned int mode_t;
|
||||||
|
|
||||||
|
TYPEDEF unsigned int nlink_t;
|
||||||
|
TYPEDEF unsigned long long ino_t;
|
||||||
|
TYPEDEF long long dev_t;
|
||||||
|
TYPEDEF long blksize_t;
|
||||||
|
TYPEDEF long long blkcnt_t;
|
||||||
|
TYPEDEF unsigned long long fsblkcnt_t;
|
||||||
|
TYPEDEF unsigned long long fsfilcnt_t;
|
||||||
|
|
||||||
|
TYPEDEF void * timer_t;
|
||||||
|
TYPEDEF int clockid_t;
|
||||||
|
TYPEDEF unsigned long clock_t;
|
||||||
|
|
||||||
|
TYPEDEF struct { unsigned long __bits[128/sizeof(long)]; } sigset_t;
|
||||||
|
TYPEDEF struct __siginfo siginfo_t;
|
||||||
|
|
||||||
|
TYPEDEF unsigned int socklen_t;
|
||||||
|
TYPEDEF unsigned short sa_family_t;
|
||||||
|
TYPEDEF unsigned short in_port_t;
|
||||||
|
TYPEDEF unsigned int in_addr_t;
|
||||||
|
STRUCT in_addr { in_addr_t s_addr; };
|
||||||
|
|
||||||
|
TYPEDEF struct __FILE_s FILE;
|
||||||
|
|
||||||
|
TYPEDEF int nl_item;
|
||||||
|
|
||||||
|
TYPEDEF struct __locale * locale_t;
|
||||||
|
|
||||||
|
STRUCT iovec { void *iov_base; size_t iov_len; };
|
||||||
|
|
||||||
|
EOF
|
1
arch/i386/bits/endian.h
Normal file
1
arch/i386/bits/endian.h
Normal file
|
@ -0,0 +1 @@
|
||||||
|
#define __BYTE_ORDER __LITTLE_ENDIAN
|
|
@ -131,4 +131,3 @@
|
||||||
#define EOWNERDEAD 130
|
#define EOWNERDEAD 130
|
||||||
#define ENOTRECOVERABLE 131
|
#define ENOTRECOVERABLE 131
|
||||||
#define ERFKILL 132
|
#define ERFKILL 132
|
||||||
#define EHWPOISON 133
|
|
|
@ -15,8 +15,6 @@
|
||||||
#define O_DIRECT 040000
|
#define O_DIRECT 040000
|
||||||
#define O_LARGEFILE 0100000
|
#define O_LARGEFILE 0100000
|
||||||
#define O_NOATIME 01000000
|
#define O_NOATIME 01000000
|
||||||
#define O_PATH 010000000
|
|
||||||
#define O_TMPFILE 020200000
|
|
||||||
#define O_NDELAY O_NONBLOCK
|
#define O_NDELAY O_NONBLOCK
|
||||||
|
|
||||||
#define F_DUPFD 0
|
#define F_DUPFD 0
|
||||||
|
@ -27,20 +25,9 @@
|
||||||
|
|
||||||
#define F_SETOWN 8
|
#define F_SETOWN 8
|
||||||
#define F_GETOWN 9
|
#define F_GETOWN 9
|
||||||
#define F_SETSIG 10
|
|
||||||
#define F_GETSIG 11
|
|
||||||
|
|
||||||
#if __LONG_MAX == 0x7fffffffL
|
|
||||||
#define F_GETLK 12
|
#define F_GETLK 12
|
||||||
#define F_SETLK 13
|
#define F_SETLK 13
|
||||||
#define F_SETLKW 14
|
#define F_SETLKW 14
|
||||||
#else
|
|
||||||
#define F_GETLK 5
|
|
||||||
#define F_SETLK 6
|
|
||||||
#define F_SETLKW 7
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#define F_SETOWN_EX 15
|
#define F_DUPFD_CLOEXEC 1030
|
||||||
#define F_GETOWN_EX 16
|
|
||||||
|
|
||||||
#define F_GETOWNER_UIDS 17
|
|
|
@ -28,6 +28,7 @@ typedef struct {
|
||||||
unsigned int __data_offset;
|
unsigned int __data_offset;
|
||||||
unsigned short __data_selector;
|
unsigned short __data_selector;
|
||||||
unsigned short __unused5;
|
unsigned short __unused5;
|
||||||
|
unsigned int __mxcsr;
|
||||||
} fenv_t;
|
} fenv_t;
|
||||||
|
|
||||||
#define FE_DFL_ENV ((const fenv_t *) -1)
|
#define FE_DFL_ENV ((const fenv_t *) -1)
|
||||||
|
|
|
@ -1,10 +1,6 @@
|
||||||
#ifdef __FLT_EVAL_METHOD__
|
#define FLT_ROUNDS 1
|
||||||
#define FLT_EVAL_METHOD __FLT_EVAL_METHOD__
|
|
||||||
#else
|
|
||||||
#define FLT_EVAL_METHOD 2
|
#define FLT_EVAL_METHOD 2
|
||||||
#endif
|
|
||||||
|
|
||||||
#define LDBL_TRUE_MIN 3.6451995318824746025e-4951L
|
|
||||||
#define LDBL_MIN 3.3621031431120935063e-4932L
|
#define LDBL_MIN 3.3621031431120935063e-4932L
|
||||||
#define LDBL_MAX 1.1897314953572317650e+4932L
|
#define LDBL_MAX 1.1897314953572317650e+4932L
|
||||||
#define LDBL_EPSILON 1.0842021724855044340e-19L
|
#define LDBL_EPSILON 1.0842021724855044340e-19L
|
||||||
|
@ -16,5 +12,3 @@
|
||||||
#define LDBL_DIG 18
|
#define LDBL_DIG 18
|
||||||
#define LDBL_MIN_10_EXP (-4931)
|
#define LDBL_MIN_10_EXP (-4931)
|
||||||
#define LDBL_MAX_10_EXP 4932
|
#define LDBL_MAX_10_EXP 4932
|
||||||
|
|
||||||
#define DECIMAL_DIG 21
|
|
||||||
|
|
145
arch/i386/bits/in.h
Normal file
145
arch/i386/bits/in.h
Normal file
|
@ -0,0 +1,145 @@
|
||||||
|
#define IP_TOS 1
|
||||||
|
#define IP_TTL 2
|
||||||
|
#define IP_HDRINCL 3
|
||||||
|
#define IP_OPTIONS 4
|
||||||
|
#define IP_ROUTER_ALERT 5
|
||||||
|
#define IP_RECVOPTS 6
|
||||||
|
#define IP_RETOPTS 7
|
||||||
|
#define IP_PKTINFO 8
|
||||||
|
#define IP_PKTOPTIONS 9
|
||||||
|
#define IP_PMTUDISC 10
|
||||||
|
#define IP_MTU_DISCOVER 10
|
||||||
|
#define IP_RECVERR 11
|
||||||
|
#define IP_RECVTTL 12
|
||||||
|
#define IP_RECVTOS 13
|
||||||
|
#define IP_MTU 14
|
||||||
|
#define IP_FREEBIND 15
|
||||||
|
#define IP_IPSEC_POLICY 16
|
||||||
|
#define IP_XFRM_POLICY 17
|
||||||
|
#define IP_PASSSEC 18
|
||||||
|
#define IP_TRANSPARENT 19
|
||||||
|
#define IP_ORIGDSTADDR 20
|
||||||
|
#define IP_RECVORIGDSTADDR IP_ORIGDSTADDR
|
||||||
|
#define IP_MINTTL 21
|
||||||
|
#define IP_MULTICAST_IF 32
|
||||||
|
#define IP_MULTICAST_TTL 33
|
||||||
|
#define IP_MULTICAST_LOOP 34
|
||||||
|
#define IP_ADD_MEMBERSHIP 35
|
||||||
|
#define IP_DROP_MEMBERSHIP 36
|
||||||
|
#define IP_UNBLOCK_SOURCE 37
|
||||||
|
#define IP_BLOCK_SOURCE 38
|
||||||
|
#define IP_ADD_SOURCE_MEMBERSHIP 39
|
||||||
|
#define IP_DROP_SOURCE_MEMBERSHIP 40
|
||||||
|
#define IP_MSFILTER 41
|
||||||
|
|
||||||
|
#define IP_RECVRETOPTS IP_RETOPTS
|
||||||
|
|
||||||
|
#define IP_PMTUDISC_DONT 0
|
||||||
|
#define IP_PMTUDISC_WANT 1
|
||||||
|
#define IP_PMTUDISC_DO 2
|
||||||
|
#define IP_PMTUDISC_PROBE 3
|
||||||
|
|
||||||
|
#define SOL_IP 0
|
||||||
|
|
||||||
|
#define IP_DEFAULT_MULTICAST_TTL 1
|
||||||
|
#define IP_DEFAULT_MULTICAST_LOOP 1
|
||||||
|
#define IP_MAX_MEMBERSHIPS 20
|
||||||
|
|
||||||
|
struct ip_opts
|
||||||
|
{
|
||||||
|
struct in_addr ip_dst;
|
||||||
|
char ip_opts[40];
|
||||||
|
};
|
||||||
|
|
||||||
|
struct ip_mreq
|
||||||
|
{
|
||||||
|
struct in_addr imr_multiaddr;
|
||||||
|
struct in_addr imr_interface;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct ip_mreqn
|
||||||
|
{
|
||||||
|
struct in_addr imr_multiaddr;
|
||||||
|
struct in_addr imr_address;
|
||||||
|
int imr_ifindex;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct in_pktinfo
|
||||||
|
{
|
||||||
|
int ipi_ifindex;
|
||||||
|
struct in_addr ipi_spec_dst;
|
||||||
|
struct in_addr ipi_addr;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct in6_pktinfo
|
||||||
|
{
|
||||||
|
struct in6_addr ipi6_addr;
|
||||||
|
unsigned ipi6_ifindex;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct in6_mutinfo
|
||||||
|
{
|
||||||
|
struct sockaddr_in6 ip6m_addr;
|
||||||
|
uint32_t ip6m_mtu;
|
||||||
|
};
|
||||||
|
|
||||||
|
#define IPV6_ADDRFORM 1
|
||||||
|
#define IPV6_2292PKTINFO 2
|
||||||
|
#define IPV6_2292HOPOPTS 3
|
||||||
|
#define IPV6_2292DSTOPTS 4
|
||||||
|
#define IPV6_2292RTHDR 5
|
||||||
|
#define IPV6_2292PKTOPTIONS 6
|
||||||
|
#define IPV6_CHECKSUM 7
|
||||||
|
#define IPV6_2292HOPLIMIT 8
|
||||||
|
#define SCM_SRCRT IPV6_RXSRCRT
|
||||||
|
#define IPV6_NEXTHOP 9
|
||||||
|
#define IPV6_AUTHHDR 10
|
||||||
|
#define IPV6_UNICAST_HOPS 16
|
||||||
|
#define IPV6_MULTICAST_IF 17
|
||||||
|
#define IPV6_MULTICAST_HOPS 18
|
||||||
|
#define IPV6_MULTICAST_LOOP 19
|
||||||
|
#define IPV6_JOIN_GROUP 20
|
||||||
|
#define IPV6_LEAVE_GROUP 21
|
||||||
|
#define IPV6_ROUTER_ALERT 22
|
||||||
|
#define IPV6_MTU_DISCOVER 23
|
||||||
|
#define IPV6_MTU 24
|
||||||
|
#define IPV6_RECVERR 25
|
||||||
|
#define IPV6_V6ONLY 26
|
||||||
|
#define IPV6_JOIN_ANYCAST 27
|
||||||
|
#define IPV6_LEAVE_ANYCAST 28
|
||||||
|
#define IPV6_IPSEC_POLICY 34
|
||||||
|
#define IPV6_XFRM_POLICY 35
|
||||||
|
|
||||||
|
#define IPV6_RECVPKTINFO 49
|
||||||
|
#define IPV6_PKTINFO 50
|
||||||
|
#define IPV6_RECVHOPLIMIT 51
|
||||||
|
#define IPV6_HOPLIMIT 52
|
||||||
|
#define IPV6_RECVHOPOPTS 53
|
||||||
|
#define IPV6_HOPOPTS 54
|
||||||
|
#define IPV6_RTHDRDSTOPTS 55
|
||||||
|
#define IPV6_RECVRTHDR 56
|
||||||
|
#define IPV6_RTHDR 57
|
||||||
|
#define IPV6_RECVDSTOPTS 58
|
||||||
|
#define IPV6_DSTOPTS 59
|
||||||
|
|
||||||
|
#define IPV6_RECVTCLASS 66
|
||||||
|
#define IPV6_TCLASS 67
|
||||||
|
|
||||||
|
#define IPV6_ADD_MEMBERSHIP IPV6_JOIN_GROUP
|
||||||
|
#define IPV6_DROP_MEMBERSHIP IPV6_LEAVE_GROUP
|
||||||
|
#define IPV6_RXHOPOPTS IPV6_HOPOPTS
|
||||||
|
#define IPV6_RXDSTOPTS IPV6_DSTOPTS
|
||||||
|
|
||||||
|
|
||||||
|
#define IPV6_PMTUDISC_DONT 0
|
||||||
|
#define IPV6_PMTUDISC_WANT 1
|
||||||
|
#define IPV6_PMTUDISC_DO 2
|
||||||
|
#define IPV6_PMTUDISC_PROBE 3
|
||||||
|
|
||||||
|
#define SOL_IPV6 41
|
||||||
|
#define SOL_ICMPV6 58
|
||||||
|
|
||||||
|
#define IPV6_RTHDR_LOOSE 0
|
||||||
|
#define IPV6_RTHDR_STRICT 1
|
||||||
|
|
||||||
|
#define IPV6_RTHDR_TYPE_0 0
|
|
@ -1,77 +0,0 @@
|
||||||
static __inline void outb(unsigned char __val, unsigned short __port)
|
|
||||||
{
|
|
||||||
__asm__ volatile ("outb %0,%1" : : "a" (__val), "dN" (__port));
|
|
||||||
}
|
|
||||||
|
|
||||||
static __inline void outw(unsigned short __val, unsigned short __port)
|
|
||||||
{
|
|
||||||
__asm__ volatile ("outw %0,%1" : : "a" (__val), "dN" (__port));
|
|
||||||
}
|
|
||||||
|
|
||||||
static __inline void outl(unsigned int __val, unsigned short __port)
|
|
||||||
{
|
|
||||||
__asm__ volatile ("outl %0,%1" : : "a" (__val), "dN" (__port));
|
|
||||||
}
|
|
||||||
|
|
||||||
static __inline unsigned char inb(unsigned short __port)
|
|
||||||
{
|
|
||||||
unsigned char __val;
|
|
||||||
__asm__ volatile ("inb %1,%0" : "=a" (__val) : "dN" (__port));
|
|
||||||
return __val;
|
|
||||||
}
|
|
||||||
|
|
||||||
static __inline unsigned short inw(unsigned short __port)
|
|
||||||
{
|
|
||||||
unsigned short __val;
|
|
||||||
__asm__ volatile ("inw %1,%0" : "=a" (__val) : "dN" (__port));
|
|
||||||
return __val;
|
|
||||||
}
|
|
||||||
|
|
||||||
static __inline unsigned int inl(unsigned short __port)
|
|
||||||
{
|
|
||||||
unsigned int __val;
|
|
||||||
__asm__ volatile ("inl %1,%0" : "=a" (__val) : "dN" (__port));
|
|
||||||
return __val;
|
|
||||||
}
|
|
||||||
|
|
||||||
static __inline void outsb(unsigned short __port, const void *__buf, unsigned long __n)
|
|
||||||
{
|
|
||||||
__asm__ volatile ("cld; rep; outsb"
|
|
||||||
: "+S" (__buf), "+c" (__n)
|
|
||||||
: "d" (__port));
|
|
||||||
}
|
|
||||||
|
|
||||||
static __inline void outsw(unsigned short __port, const void *__buf, unsigned long __n)
|
|
||||||
{
|
|
||||||
__asm__ volatile ("cld; rep; outsw"
|
|
||||||
: "+S" (__buf), "+c" (__n)
|
|
||||||
: "d" (__port));
|
|
||||||
}
|
|
||||||
|
|
||||||
static __inline void outsl(unsigned short __port, const void *__buf, unsigned long __n)
|
|
||||||
{
|
|
||||||
__asm__ volatile ("cld; rep; outsl"
|
|
||||||
: "+S" (__buf), "+c"(__n)
|
|
||||||
: "d" (__port));
|
|
||||||
}
|
|
||||||
|
|
||||||
static __inline void insb(unsigned short __port, void *__buf, unsigned long __n)
|
|
||||||
{
|
|
||||||
__asm__ volatile ("cld; rep; insb"
|
|
||||||
: "+D" (__buf), "+c" (__n)
|
|
||||||
: "d" (__port));
|
|
||||||
}
|
|
||||||
|
|
||||||
static __inline void insw(unsigned short __port, void *__buf, unsigned long __n)
|
|
||||||
{
|
|
||||||
__asm__ volatile ("cld; rep; insw"
|
|
||||||
: "+D" (__buf), "+c" (__n)
|
|
||||||
: "d" (__port));
|
|
||||||
}
|
|
||||||
|
|
||||||
static __inline void insl(unsigned short __port, void *__buf, unsigned long __n)
|
|
||||||
{
|
|
||||||
__asm__ volatile ("cld; rep; insl"
|
|
||||||
: "+D" (__buf), "+c" (__n)
|
|
||||||
: "d" (__port));
|
|
||||||
}
|
|
197
arch/i386/bits/ioctl.h
Normal file
197
arch/i386/bits/ioctl.h
Normal file
|
@ -0,0 +1,197 @@
|
||||||
|
#define _IOC(a,b,c,d) ( ((a)<<30) | ((b)<<8) | (c) | ((d)<<16) )
|
||||||
|
#define _IOC_NONE 0U
|
||||||
|
#define _IOC_WRITE 1U
|
||||||
|
#define _IOC_READ 2U
|
||||||
|
|
||||||
|
#define _IO(a,b) _IOC(_IOC_NONE,(a),(b),0)
|
||||||
|
#define _IOW(a,b,c) _IOC(1,(a),(b),sizeof(c))
|
||||||
|
#define _IOR(a,b,c) _IOC(2,(a),(b),sizeof(c))
|
||||||
|
#define _IOWR(a,b,c) _IOC(3,(a),(b),sizeof(c))
|
||||||
|
|
||||||
|
#define TCGETS 0x5401
|
||||||
|
#define TCSETS 0x5402
|
||||||
|
#define TCSETSW 0x5403
|
||||||
|
#define TCSETSF 0x5404
|
||||||
|
#define TCGETA 0x5405
|
||||||
|
#define TCSETA 0x5406
|
||||||
|
#define TCSETAW 0x5407
|
||||||
|
#define TCSETAF 0x5408
|
||||||
|
#define TCSBRK 0x5409
|
||||||
|
#define TCXONC 0x540A
|
||||||
|
#define TCFLSH 0x540B
|
||||||
|
#define TIOCEXCL 0x540C
|
||||||
|
#define TIOCNXCL 0x540D
|
||||||
|
#define TIOCSCTTY 0x540E
|
||||||
|
#define TIOCGPGRP 0x540F
|
||||||
|
#define TIOCSPGRP 0x5410
|
||||||
|
#define TIOCOUTQ 0x5411
|
||||||
|
#define TIOCSTI 0x5412
|
||||||
|
#define TIOCGWINSZ 0x5413
|
||||||
|
#define TIOCSWINSZ 0x5414
|
||||||
|
#define TIOCMGET 0x5415
|
||||||
|
#define TIOCMBIS 0x5416
|
||||||
|
#define TIOCMBIC 0x5417
|
||||||
|
#define TIOCMSET 0x5418
|
||||||
|
#define TIOCGSOFTCAR 0x5419
|
||||||
|
#define TIOCSSOFTCAR 0x541A
|
||||||
|
#define FIONREAD 0x541B
|
||||||
|
#define TIOCINQ FIONREAD
|
||||||
|
#define TIOCLINUX 0x541C
|
||||||
|
#define TIOCCONS 0x541D
|
||||||
|
#define TIOCGSERIAL 0x541E
|
||||||
|
#define TIOCSSERIAL 0x541F
|
||||||
|
#define TIOCPKT 0x5420
|
||||||
|
#define FIONBIO 0x5421
|
||||||
|
#define TIOCNOTTY 0x5422
|
||||||
|
#define TIOCSETD 0x5423
|
||||||
|
#define TIOCGETD 0x5424
|
||||||
|
#define TCSBRKP 0x5425
|
||||||
|
#define TIOCTTYGSTRUCT 0x5426
|
||||||
|
#define TIOCSBRK 0x5427
|
||||||
|
#define TIOCCBRK 0x5428
|
||||||
|
#define TIOCGSID 0x5429
|
||||||
|
#define TIOCGPTN 0x80045430
|
||||||
|
#define TIOCSPTLCK 0x40045431
|
||||||
|
#define TCGETX 0x5432
|
||||||
|
#define TCSETX 0x5433
|
||||||
|
#define TCSETXF 0x5434
|
||||||
|
#define TCSETXW 0x5435
|
||||||
|
|
||||||
|
#define FIONCLEX 0x5450
|
||||||
|
#define FIOCLEX 0x5451
|
||||||
|
#define FIOASYNC 0x5452
|
||||||
|
#define TIOCSERCONFIG 0x5453
|
||||||
|
#define TIOCSERGWILD 0x5454
|
||||||
|
#define TIOCSERSWILD 0x5455
|
||||||
|
#define TIOCGLCKTRMIOS 0x5456
|
||||||
|
#define TIOCSLCKTRMIOS 0x5457
|
||||||
|
#define TIOCSERGSTRUCT 0x5458
|
||||||
|
#define TIOCSERGETLSR 0x5459
|
||||||
|
#define TIOCSERGETMULTI 0x545A
|
||||||
|
#define TIOCSERSETMULTI 0x545B
|
||||||
|
|
||||||
|
#define TIOCMIWAIT 0x545C
|
||||||
|
#define TIOCGICOUNT 0x545D
|
||||||
|
#define TIOCGHAYESESP 0x545E
|
||||||
|
#define TIOCSHAYESESP 0x545F
|
||||||
|
#define FIOQSIZE 0x5460
|
||||||
|
|
||||||
|
#define TIOCPKT_DATA 0
|
||||||
|
#define TIOCPKT_FLUSHREAD 1
|
||||||
|
#define TIOCPKT_FLUSHWRITE 2
|
||||||
|
#define TIOCPKT_STOP 4
|
||||||
|
#define TIOCPKT_START 8
|
||||||
|
#define TIOCPKT_NOSTOP 16
|
||||||
|
#define TIOCPKT_DOSTOP 32
|
||||||
|
#define TIOCPKT_IOCTL 64
|
||||||
|
|
||||||
|
#define TIOCSER_TEMT 0x01
|
||||||
|
|
||||||
|
struct winsize {
|
||||||
|
unsigned short ws_row;
|
||||||
|
unsigned short ws_col;
|
||||||
|
unsigned short ws_xpixel;
|
||||||
|
unsigned short ws_ypixel;
|
||||||
|
};
|
||||||
|
|
||||||
|
#define TIOCM_LE 0x001
|
||||||
|
#define TIOCM_DTR 0x002
|
||||||
|
#define TIOCM_RTS 0x004
|
||||||
|
#define TIOCM_ST 0x008
|
||||||
|
#define TIOCM_SR 0x010
|
||||||
|
#define TIOCM_CTS 0x020
|
||||||
|
#define TIOCM_CAR 0x040
|
||||||
|
#define TIOCM_RNG 0x080
|
||||||
|
#define TIOCM_DSR 0x100
|
||||||
|
#define TIOCM_CD TIOCM_CAR
|
||||||
|
#define TIOCM_RI TIOCM_RNG
|
||||||
|
#define TIOCM_OUT1 0x2000
|
||||||
|
#define TIOCM_OUT2 0x4000
|
||||||
|
#define TIOCM_LOOP 0x8000
|
||||||
|
#define TIOCM_MODEM_BITS TIOCM_OUT2
|
||||||
|
|
||||||
|
#define N_TTY 0
|
||||||
|
#define N_SLIP 1
|
||||||
|
#define N_MOUSE 2
|
||||||
|
#define N_PPP 3
|
||||||
|
#define N_STRIP 4
|
||||||
|
#define N_AX25 5
|
||||||
|
#define N_X25 6
|
||||||
|
#define N_6PACK 7
|
||||||
|
#define N_MASC 8
|
||||||
|
#define N_R3964 9
|
||||||
|
#define N_PROFIBUS_FDL 10
|
||||||
|
#define N_IRDA 11
|
||||||
|
#define N_SMSBLOCK 12
|
||||||
|
#define N_HDLC 13
|
||||||
|
#define N_SYNC_PPP 14
|
||||||
|
#define N_HCI 15
|
||||||
|
|
||||||
|
#define FIOSETOWN 0x8901
|
||||||
|
#define SIOCSPGRP 0x8902
|
||||||
|
#define FIOGETOWN 0x8903
|
||||||
|
#define SIOCGPGRP 0x8904
|
||||||
|
#define SIOCATMARK 0x8905
|
||||||
|
#define SIOCGSTAMP 0x8906
|
||||||
|
|
||||||
|
#define SIOCADDRT 0x890B
|
||||||
|
#define SIOCDELRT 0x890C
|
||||||
|
#define SIOCRTMSG 0x890D
|
||||||
|
|
||||||
|
#define SIOCGIFNAME 0x8910
|
||||||
|
#define SIOCSIFLINK 0x8911
|
||||||
|
#define SIOCGIFCONF 0x8912
|
||||||
|
#define SIOCGIFFLAGS 0x8913
|
||||||
|
#define SIOCSIFFLAGS 0x8914
|
||||||
|
#define SIOCGIFADDR 0x8915
|
||||||
|
#define SIOCSIFADDR 0x8916
|
||||||
|
#define SIOCGIFDSTADDR 0x8917
|
||||||
|
#define SIOCSIFDSTADDR 0x8918
|
||||||
|
#define SIOCGIFBRDADDR 0x8919
|
||||||
|
#define SIOCSIFBRDADDR 0x891a
|
||||||
|
#define SIOCGIFNETMASK 0x891b
|
||||||
|
#define SIOCSIFNETMASK 0x891c
|
||||||
|
#define SIOCGIFMETRIC 0x891d
|
||||||
|
#define SIOCSIFMETRIC 0x891e
|
||||||
|
#define SIOCGIFMEM 0x891f
|
||||||
|
#define SIOCSIFMEM 0x8920
|
||||||
|
#define SIOCGIFMTU 0x8921
|
||||||
|
#define SIOCSIFMTU 0x8922
|
||||||
|
#define SIOCSIFHWADDR 0x8924
|
||||||
|
#define SIOCGIFENCAP 0x8925
|
||||||
|
#define SIOCSIFENCAP 0x8926
|
||||||
|
#define SIOCGIFHWADDR 0x8927
|
||||||
|
#define SIOCGIFSLAVE 0x8929
|
||||||
|
#define SIOCSIFSLAVE 0x8930
|
||||||
|
#define SIOCADDMULTI 0x8931
|
||||||
|
#define SIOCDELMULTI 0x8932
|
||||||
|
#define SIOCGIFINDEX 0x8933
|
||||||
|
#define SIOGIFINDEX SIOCGIFINDEX
|
||||||
|
#define SIOCSIFPFLAGS 0x8934
|
||||||
|
#define SIOCGIFPFLAGS 0x8935
|
||||||
|
#define SIOCDIFADDR 0x8936
|
||||||
|
#define SIOCSIFHWBROADCAST 0x8937
|
||||||
|
#define SIOCGIFCOUNT 0x8938
|
||||||
|
|
||||||
|
#define SIOCGIFBR 0x8940
|
||||||
|
#define SIOCSIFBR 0x8941
|
||||||
|
|
||||||
|
#define SIOCGIFTXQLEN 0x8942
|
||||||
|
#define SIOCSIFTXQLEN 0x8943
|
||||||
|
|
||||||
|
#define SIOCDARP 0x8953
|
||||||
|
#define SIOCGARP 0x8954
|
||||||
|
#define SIOCSARP 0x8955
|
||||||
|
|
||||||
|
#define SIOCDRARP 0x8960
|
||||||
|
#define SIOCGRARP 0x8961
|
||||||
|
#define SIOCSRARP 0x8962
|
||||||
|
|
||||||
|
#define SIOCGIFMAP 0x8970
|
||||||
|
#define SIOCSIFMAP 0x8971
|
||||||
|
|
||||||
|
#define SIOCADDDLCI 0x8980
|
||||||
|
#define SIOCDELDLCI 0x8981
|
||||||
|
|
||||||
|
#define SIOCDEVPRIVATE 0x89F0
|
||||||
|
#define SIOCPROTOPRIVATE 0x89E0
|
|
@ -1,4 +1,5 @@
|
||||||
struct ipc_perm {
|
struct ipc_perm
|
||||||
|
{
|
||||||
key_t __ipc_perm_key;
|
key_t __ipc_perm_key;
|
||||||
uid_t uid;
|
uid_t uid;
|
||||||
gid_t gid;
|
gid_t gid;
|
|
@ -1 +0,0 @@
|
||||||
#define IPC_STAT 0x102
|
|
|
@ -1 +1,33 @@
|
||||||
|
#if defined(_POSIX_SOURCE) || defined(_POSIX_C_SOURCE) \
|
||||||
|
|| defined(_XOPEN_SOURCE) || defined(_GNU_SOURCE)
|
||||||
|
#define PIPE_BUF 4096
|
||||||
#define PAGESIZE 4096
|
#define PAGESIZE 4096
|
||||||
|
#define PAGE_SIZE PAGESIZE
|
||||||
|
#define FILESIZEBITS 64
|
||||||
|
#define NAME_MAX 255
|
||||||
|
#define SYMLINK_MAX 255
|
||||||
|
#define PATH_MAX 4096
|
||||||
|
#define NZERO 20
|
||||||
|
#define NGROUPS_MAX 32
|
||||||
|
#define ARG_MAX 131072
|
||||||
|
#define IOV_MAX 1024
|
||||||
|
#define SYMLOOP_MAX 40
|
||||||
|
#define WORD_BIT 32
|
||||||
|
#define LONG_BIT 32
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#define SHRT_MIN (-1-0x7fff)
|
||||||
|
#define SHRT_MAX 0x7fff
|
||||||
|
#define USHRT_MAX 0xffff
|
||||||
|
|
||||||
|
#define INT_MIN (-1-0x7fffffff)
|
||||||
|
#define INT_MAX 0x7fffffff
|
||||||
|
#define UINT_MAX 0xffffffffU
|
||||||
|
|
||||||
|
#define LONG_MIN (-1-0x7fffffffL)
|
||||||
|
#define LONG_MAX 0x7fffffffL
|
||||||
|
#define ULONG_MAX 0xffffffffUL
|
||||||
|
|
||||||
|
#define LLONG_MIN (-1-0x7fffffffffffffffLL)
|
||||||
|
#define LLONG_MAX 0x7fffffffffffffffLL
|
||||||
|
#define ULLONG_MAX 0xffffffffffffffffULL
|
||||||
|
|
|
@ -1 +1,50 @@
|
||||||
|
#define MAP_FAILED ((void *) -1)
|
||||||
|
|
||||||
|
#define PROT_NONE 0
|
||||||
|
#define PROT_READ 1
|
||||||
|
#define PROT_WRITE 2
|
||||||
|
#define PROT_EXEC 4
|
||||||
|
#define PROT_GROWSDOWN 0x01000000
|
||||||
|
#define PROT_GROWSUP 0x02000000
|
||||||
|
|
||||||
|
#define MAP_SHARED 0x01
|
||||||
|
#define MAP_PRIVATE 0x02
|
||||||
|
#define MAP_FIXED 0x10
|
||||||
|
|
||||||
|
#define MAP_TYPE 0x0f
|
||||||
|
#define MAP_FILE 0x00
|
||||||
|
#define MAP_ANON 0x20
|
||||||
|
#define MAP_ANONYMOUS MAP_ANON
|
||||||
#define MAP_32BIT 0x40
|
#define MAP_32BIT 0x40
|
||||||
|
|
||||||
|
#define POSIX_MADV_NORMAL 0
|
||||||
|
#define POSIX_MADV_RANDOM 1
|
||||||
|
#define POSIX_MADV_SEQUENTIAL 2
|
||||||
|
#define POSIX_MADV_WILLNEED 3
|
||||||
|
#define POSIX_MADV_DONTNEED 0
|
||||||
|
|
||||||
|
#define MS_ASYNC 1
|
||||||
|
#define MS_INVALIDATE 2
|
||||||
|
#define MS_SYNC 4
|
||||||
|
|
||||||
|
#define MCL_CURRENT 1
|
||||||
|
#define MCL_FUTURE 2
|
||||||
|
|
||||||
|
#ifdef _GNU_SOURCE
|
||||||
|
#define MADV_NORMAL 0
|
||||||
|
#define MADV_RANDOM 1
|
||||||
|
#define MADV_SEQUENTIAL 2
|
||||||
|
#define MADV_WILLNEED 3
|
||||||
|
#define MADV_DONTNEED 4
|
||||||
|
#define MADV_REMOVE 9
|
||||||
|
#define MADV_DONTFORK 10
|
||||||
|
#define MADV_DOFORK 11
|
||||||
|
#define MADV_MERGEABLE 12
|
||||||
|
#define MADV_UNMERGEABLE 13
|
||||||
|
#define MADV_HUGEPAGE 14
|
||||||
|
#define MADV_NOHUGEPAGE 15
|
||||||
|
#define MADV_HWPOISON 100
|
||||||
|
|
||||||
|
#define MREMAP_MAYMOVE 1
|
||||||
|
#define MREMAP_FIXED 2
|
||||||
|
#endif
|
||||||
|
|
|
@ -1,18 +1,16 @@
|
||||||
struct msqid_ds {
|
struct msqid_ds
|
||||||
|
{
|
||||||
struct ipc_perm msg_perm;
|
struct ipc_perm msg_perm;
|
||||||
unsigned long __msg_stime_lo;
|
time_t msg_stime;
|
||||||
unsigned long __msg_stime_hi;
|
int __unused1;
|
||||||
unsigned long __msg_rtime_lo;
|
time_t msg_rtime;
|
||||||
unsigned long __msg_rtime_hi;
|
int __unused2;
|
||||||
unsigned long __msg_ctime_lo;
|
time_t msg_ctime;
|
||||||
unsigned long __msg_ctime_hi;
|
int __unused3;
|
||||||
unsigned long msg_cbytes;
|
unsigned long msg_cbytes;
|
||||||
msgqnum_t msg_qnum;
|
msgqnum_t msg_qnum;
|
||||||
msglen_t msg_qbytes;
|
msglen_t msg_qbytes;
|
||||||
pid_t msg_lspid;
|
pid_t msg_lspid;
|
||||||
pid_t msg_lrpid;
|
pid_t msg_lrpid;
|
||||||
unsigned long __unused[2];
|
unsigned long __unused[2];
|
||||||
time_t msg_stime;
|
|
||||||
time_t msg_rtime;
|
|
||||||
time_t msg_ctime;
|
|
||||||
};
|
};
|
||||||
|
|
2
arch/i386/bits/posix.h
Normal file
2
arch/i386/bits/posix.h
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
#define _POSIX_V6_ILP32_OFFBIG 1
|
||||||
|
#define _POSIX_V7_ILP32_OFFBIG 1
|
25
arch/i386/bits/pthread.h
Normal file
25
arch/i386/bits/pthread.h
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
struct __ptcb {
|
||||||
|
long __jb[7];
|
||||||
|
int __dummy;
|
||||||
|
struct __ptcb *__next;
|
||||||
|
void *__ptrs[3];
|
||||||
|
};
|
||||||
|
|
||||||
|
static inline void __pthread_register_cancel_2(struct __ptcb *__cb)
|
||||||
|
{
|
||||||
|
__asm__ __volatile__( "call __pthread_register_cancel" : : "a"(__cb) : "ecx", "edx", "memory" );
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline void __pthread_unregister_cancel_2(struct __ptcb *__cb)
|
||||||
|
{
|
||||||
|
__asm__ __volatile__( "call __pthread_unregister_cancel" : : "a"(__cb) : "ecx", "edx", "memory" );
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline void __pthread_unwind_next_2(struct __ptcb *__cb)
|
||||||
|
{
|
||||||
|
__asm__ __volatile__( "call __pthread_unwind_next" : : "a"(__cb) : "ecx", "edx", "memory" );
|
||||||
|
}
|
||||||
|
|
||||||
|
#define __pthread_register_cancel __pthread_register_cancel_2
|
||||||
|
#define __pthread_unregister_cancel __pthread_unregister_cancel_2
|
||||||
|
#define __pthread_unwind_next __pthread_unwind_next_2
|
|
@ -1,11 +0,0 @@
|
||||||
#define PTRACE_GET_THREAD_AREA 25
|
|
||||||
#define PTRACE_SET_THREAD_AREA 26
|
|
||||||
#define PTRACE_SYSEMU 31
|
|
||||||
#define PTRACE_SYSEMU_SINGLESTEP 32
|
|
||||||
#define PTRACE_SINGLEBLOCK 33
|
|
||||||
|
|
||||||
#define PT_GET_THREAD_AREA PTRACE_GET_THREAD_AREA
|
|
||||||
#define PT_SET_THREAD_AREA PTRACE_SET_THREAD_AREA
|
|
||||||
#define PT_SYSEMU PTRACE_SYSEMU
|
|
||||||
#define PT_SYSEMU_SINGLESTEP PTRACE_SYSEMU_SINGLESTEP
|
|
||||||
#define PT_STEPBLOCK PTRACE_SINGLEBLOCK
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
#undef __WORDSIZE
|
||||||
|
#define __WORDSIZE 32
|
||||||
#define EBX 0
|
#define EBX 0
|
||||||
#define ECX 1
|
#define ECX 1
|
||||||
#define EDX 2
|
#define EDX 2
|
||||||
|
|
|
@ -1,13 +0,0 @@
|
||||||
struct semid_ds {
|
|
||||||
struct ipc_perm sem_perm;
|
|
||||||
unsigned long __sem_otime_lo;
|
|
||||||
unsigned long __sem_otime_hi;
|
|
||||||
unsigned long __sem_ctime_lo;
|
|
||||||
unsigned long __sem_ctime_hi;
|
|
||||||
unsigned short sem_nsems;
|
|
||||||
char __sem_nsems_pad[sizeof(long)-sizeof(short)];
|
|
||||||
long __unused3;
|
|
||||||
long __unused4;
|
|
||||||
time_t sem_otime;
|
|
||||||
time_t sem_ctime;
|
|
||||||
};
|
|
|
@ -1 +1 @@
|
||||||
typedef unsigned long __jmp_buf[6];
|
typedef unsigned long jmp_buf [7];
|
||||||
|
|
|
@ -1,31 +1,18 @@
|
||||||
#define SHMLBA 4096
|
#define SHMLBA 4096
|
||||||
|
|
||||||
struct shmid_ds {
|
struct shmid_ds
|
||||||
|
{
|
||||||
struct ipc_perm shm_perm;
|
struct ipc_perm shm_perm;
|
||||||
size_t shm_segsz;
|
size_t shm_segsz;
|
||||||
unsigned long __shm_atime_lo;
|
time_t shm_atime;
|
||||||
unsigned long __shm_atime_hi;
|
int __unused1;
|
||||||
unsigned long __shm_dtime_lo;
|
time_t shm_dtime;
|
||||||
unsigned long __shm_dtime_hi;
|
int __unused2;
|
||||||
unsigned long __shm_ctime_lo;
|
time_t shm_ctime;
|
||||||
unsigned long __shm_ctime_hi;
|
int __unused3;
|
||||||
pid_t shm_cpid;
|
pid_t shm_cpid;
|
||||||
pid_t shm_lpid;
|
pid_t shm_lpid;
|
||||||
unsigned long shm_nattch;
|
unsigned long shm_nattch;
|
||||||
unsigned long __pad1;
|
unsigned long __pad1;
|
||||||
unsigned long __pad2;
|
unsigned long __pad2;
|
||||||
unsigned long __pad3;
|
|
||||||
time_t shm_atime;
|
|
||||||
time_t shm_dtime;
|
|
||||||
time_t shm_ctime;
|
|
||||||
};
|
|
||||||
|
|
||||||
struct shminfo {
|
|
||||||
unsigned long shmmax, shmmin, shmmni, shmseg, shmall, __unused[4];
|
|
||||||
};
|
|
||||||
|
|
||||||
struct shm_info {
|
|
||||||
int __used_ids;
|
|
||||||
unsigned long shm_tot, shm_rss, shm_swp;
|
|
||||||
unsigned long __swap_attempts, __swap_successes;
|
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,87 +1,17 @@
|
||||||
#if defined(_POSIX_SOURCE) || defined(_POSIX_C_SOURCE) \
|
#if defined(_POSIX_SOURCE) || defined(_POSIX_C_SOURCE) \
|
||||||
|| defined(_XOPEN_SOURCE) || defined(_GNU_SOURCE) || defined(_BSD_SOURCE)
|
|| defined(_XOPEN_SOURCE) || defined(_GNU_SOURCE)
|
||||||
|
|
||||||
#if defined(_XOPEN_SOURCE) || defined(_GNU_SOURCE) || defined(_BSD_SOURCE)
|
struct __fpstate {
|
||||||
#define MINSIGSTKSZ 2048
|
unsigned long __x[7];
|
||||||
#define SIGSTKSZ 8192
|
unsigned char __y[80];
|
||||||
#endif
|
unsigned long __z;
|
||||||
|
|
||||||
#ifdef _GNU_SOURCE
|
|
||||||
enum { REG_GS = 0 };
|
|
||||||
#define REG_GS REG_GS
|
|
||||||
enum { REG_FS = 1 };
|
|
||||||
#define REG_FS REG_FS
|
|
||||||
enum { REG_ES = 2 };
|
|
||||||
#define REG_ES REG_ES
|
|
||||||
enum { REG_DS = 3 };
|
|
||||||
#define REG_DS REG_DS
|
|
||||||
enum { REG_EDI = 4 };
|
|
||||||
#define REG_EDI REG_EDI
|
|
||||||
enum { REG_ESI = 5 };
|
|
||||||
#define REG_ESI REG_ESI
|
|
||||||
enum { REG_EBP = 6 };
|
|
||||||
#define REG_EBP REG_EBP
|
|
||||||
enum { REG_ESP = 7 };
|
|
||||||
#define REG_ESP REG_ESP
|
|
||||||
enum { REG_EBX = 8 };
|
|
||||||
#define REG_EBX REG_EBX
|
|
||||||
enum { REG_EDX = 9 };
|
|
||||||
#define REG_EDX REG_EDX
|
|
||||||
enum { REG_ECX = 10 };
|
|
||||||
#define REG_ECX REG_ECX
|
|
||||||
enum { REG_EAX = 11 };
|
|
||||||
#define REG_EAX REG_EAX
|
|
||||||
enum { REG_TRAPNO = 12 };
|
|
||||||
#define REG_TRAPNO REG_TRAPNO
|
|
||||||
enum { REG_ERR = 13 };
|
|
||||||
#define REG_ERR REG_ERR
|
|
||||||
enum { REG_EIP = 14 };
|
|
||||||
#define REG_EIP REG_EIP
|
|
||||||
enum { REG_CS = 15 };
|
|
||||||
#define REG_CS REG_CS
|
|
||||||
enum { REG_EFL = 16 };
|
|
||||||
#define REG_EFL REG_EFL
|
|
||||||
enum { REG_UESP = 17 };
|
|
||||||
#define REG_UESP REG_UESP
|
|
||||||
enum { REG_SS = 18 };
|
|
||||||
#define REG_SS REG_SS
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if defined(_GNU_SOURCE) || defined(_BSD_SOURCE)
|
|
||||||
typedef int greg_t, gregset_t[19];
|
|
||||||
typedef struct _fpstate {
|
|
||||||
unsigned long cw, sw, tag, ipoff, cssel, dataoff, datasel;
|
|
||||||
struct {
|
|
||||||
unsigned short significand[4], exponent;
|
|
||||||
} _st[8];
|
|
||||||
unsigned long status;
|
|
||||||
} *fpregset_t;
|
|
||||||
struct sigcontext {
|
|
||||||
unsigned short gs, __gsh, fs, __fsh, es, __esh, ds, __dsh;
|
|
||||||
unsigned long edi, esi, ebp, esp, ebx, edx, ecx, eax;
|
|
||||||
unsigned long trapno, err, eip;
|
|
||||||
unsigned short cs, __csh;
|
|
||||||
unsigned long eflags, esp_at_signal;
|
|
||||||
unsigned short ss, __ssh;
|
|
||||||
struct _fpstate *fpstate;
|
|
||||||
unsigned long oldmask, cr2;
|
|
||||||
};
|
};
|
||||||
typedef struct {
|
|
||||||
gregset_t gregs;
|
|
||||||
fpregset_t fpregs;
|
|
||||||
unsigned long oldmask, cr2;
|
|
||||||
} mcontext_t;
|
|
||||||
#else
|
|
||||||
typedef struct {
|
|
||||||
unsigned __space[22];
|
|
||||||
} mcontext_t;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
struct sigaltstack {
|
typedef struct {
|
||||||
void *ss_sp;
|
unsigned long __gregs[19];
|
||||||
int ss_flags;
|
void *__fpregs;
|
||||||
size_t ss_size;
|
unsigned long __oldmask, __cr2;
|
||||||
};
|
} mcontext_t;
|
||||||
|
|
||||||
typedef struct __ucontext {
|
typedef struct __ucontext {
|
||||||
unsigned long uc_flags;
|
unsigned long uc_flags;
|
||||||
|
@ -89,9 +19,122 @@ typedef struct __ucontext {
|
||||||
stack_t uc_stack;
|
stack_t uc_stack;
|
||||||
mcontext_t uc_mcontext;
|
mcontext_t uc_mcontext;
|
||||||
sigset_t uc_sigmask;
|
sigset_t uc_sigmask;
|
||||||
unsigned long __fpregs_mem[28];
|
struct __fpstate __fpregs_mem;
|
||||||
} ucontext_t;
|
} ucontext_t;
|
||||||
|
|
||||||
|
#ifdef _GNU_SOURCE
|
||||||
|
struct sigcontext {
|
||||||
|
unsigned short gs, __gsh, fs, __fsh, es, __esh, ds, __dsh;
|
||||||
|
unsigned long edi, esi, ebp, esp, ebx, edx, ecx, eax;
|
||||||
|
unsigned long trapno, err, eip;
|
||||||
|
unsigned short cs, __csh;
|
||||||
|
unsigned long eflags, esp_at_signal;
|
||||||
|
unsigned short ss, __ssh;
|
||||||
|
struct __fpstate *fpstate;
|
||||||
|
unsigned long oldmask, cr2;
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
|
||||||
|
struct __siginfo
|
||||||
|
{
|
||||||
|
int si_signo;
|
||||||
|
int si_errno;
|
||||||
|
int si_code;
|
||||||
|
union
|
||||||
|
{
|
||||||
|
char __pad[128 - 3*sizeof(int)];
|
||||||
|
struct {
|
||||||
|
pid_t si_pid;
|
||||||
|
uid_t si_uid;
|
||||||
|
union sigval si_sigval;
|
||||||
|
} __rt;
|
||||||
|
struct {
|
||||||
|
unsigned int si_timer1;
|
||||||
|
unsigned int si_timer2;
|
||||||
|
} __timer;
|
||||||
|
struct {
|
||||||
|
pid_t si_pid;
|
||||||
|
uid_t si_uid;
|
||||||
|
int si_status;
|
||||||
|
clock_t si_utime;
|
||||||
|
clock_t si_stime;
|
||||||
|
} __sigchld;
|
||||||
|
struct {
|
||||||
|
void *si_addr;
|
||||||
|
} __sigfault;
|
||||||
|
struct {
|
||||||
|
long int si_band;
|
||||||
|
int si_fd;
|
||||||
|
} __sigpoll;
|
||||||
|
} __si_fields;
|
||||||
|
};
|
||||||
|
|
||||||
|
#define si_pid __si_fields.__sigchld.si_pid
|
||||||
|
#define si_uid __si_fields.__sigchld.si_uid
|
||||||
|
#define si_status __si_fields.__sigchld.si_status
|
||||||
|
#define si_utime __si_fields.__sigchld.si_utime
|
||||||
|
#define si_stime __si_fields.__sigchld.si_stime
|
||||||
|
#define si_value __si_fields.__rt.si_sigval
|
||||||
|
#define si_addr __si_fields.__sigfault.si_addr
|
||||||
|
#define si_band __si_fields.__sigpoll.si_band
|
||||||
|
|
||||||
|
#define SI_ASYNCNL (-60)
|
||||||
|
#define SI_TKILL (-6)
|
||||||
|
#define SI_SIGIO (-5)
|
||||||
|
#define SI_ASYNCIO (-4)
|
||||||
|
#define SI_MESGQ (-3)
|
||||||
|
#define SI_TIMER (-2)
|
||||||
|
#define SI_QUEUE (-1)
|
||||||
|
#define SI_USER 0
|
||||||
|
#define SI_KERNEL 128
|
||||||
|
|
||||||
|
#define FPE_INTDIV 1
|
||||||
|
#define FPE_INTOVF 2
|
||||||
|
#define FPE_FLTDIV 3
|
||||||
|
#define FPE_FLTOVF 4
|
||||||
|
#define FPE_FLTUNT 5
|
||||||
|
#define FPE_FLTRES 6
|
||||||
|
#define FPE_FLTINV 7
|
||||||
|
#define FPE_FLTSUB 8
|
||||||
|
|
||||||
|
#define ILL_ILLOPC 1
|
||||||
|
#define ILL_ILLOPN 2
|
||||||
|
#define ILL_ILLADR 3
|
||||||
|
#define ILL_ILLTRP 4
|
||||||
|
#define ILL_PRVOPC 5
|
||||||
|
#define ILL_PRVREG 6
|
||||||
|
#define ILL_COPROC 7
|
||||||
|
#define ILL_BADSTK 8
|
||||||
|
|
||||||
|
#define SEGV_MAPERR 1
|
||||||
|
#define SEGV_ACCERR 2
|
||||||
|
|
||||||
|
#define BUS_ADRALN 1
|
||||||
|
#define BUS_ADRERR 2
|
||||||
|
#define BUS_OBJERR 3
|
||||||
|
|
||||||
|
#define CLD_EXITED 1
|
||||||
|
#define CLD_KILLED 2
|
||||||
|
#define CLD_DUMPED 3
|
||||||
|
#define CLD_TRAPPED 4
|
||||||
|
#define CLD_STOPPED 5
|
||||||
|
#define CLD_CONTINUED 6
|
||||||
|
|
||||||
|
#if defined(_XOPEN_SOURCE) || defined(_GNU_SOURCE)
|
||||||
|
#define TRAP_BRKPT 1
|
||||||
|
#define TRAP_TRACE 2
|
||||||
|
#define POLL_IN 1
|
||||||
|
#define POLL_OUT 2
|
||||||
|
#define POLL_MSG 3
|
||||||
|
#define POLL_ERR 4
|
||||||
|
#define POLL_PRI 5
|
||||||
|
#define POLL_HUP 6
|
||||||
|
#define SS_ONSTACK 1
|
||||||
|
#define SS_DISABLE 2
|
||||||
|
#define MINSIGSTKSZ 2048
|
||||||
|
#define SIGSTKSZ 8192
|
||||||
|
#endif
|
||||||
|
|
||||||
#define SA_NOCLDSTOP 1
|
#define SA_NOCLDSTOP 1
|
||||||
#define SA_NOCLDWAIT 2
|
#define SA_NOCLDWAIT 2
|
||||||
#define SA_SIGINFO 4
|
#define SA_SIGINFO 4
|
||||||
|
@ -101,15 +144,27 @@ typedef struct __ucontext {
|
||||||
#define SA_RESETHAND 0x80000000
|
#define SA_RESETHAND 0x80000000
|
||||||
#define SA_RESTORER 0x04000000
|
#define SA_RESTORER 0x04000000
|
||||||
|
|
||||||
|
#define SIG_BLOCK 0
|
||||||
|
#define SIG_UNBLOCK 1
|
||||||
|
#define SIG_SETMASK 2
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef _GNU_SOURCE
|
||||||
|
#define NSIG 64
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#define SIG_ERR ((void (*)(int))-1)
|
||||||
|
#define SIG_DFL ((void (*)(int)) 0)
|
||||||
|
#define SIG_IGN ((void (*)(int)) 1)
|
||||||
|
#define SIG_HOLD ((void (*)(int)) 2)
|
||||||
|
|
||||||
#define SIGHUP 1
|
#define SIGHUP 1
|
||||||
#define SIGINT 2
|
#define SIGINT 2
|
||||||
#define SIGQUIT 3
|
#define SIGQUIT 3
|
||||||
#define SIGILL 4
|
#define SIGILL 4
|
||||||
#define SIGTRAP 5
|
#define SIGTRAP 5
|
||||||
#define SIGABRT 6
|
#define SIGABRT 6
|
||||||
#define SIGIOT SIGABRT
|
|
||||||
#define SIGBUS 7
|
#define SIGBUS 7
|
||||||
#define SIGFPE 8
|
#define SIGFPE 8
|
||||||
#define SIGKILL 9
|
#define SIGKILL 9
|
||||||
|
@ -137,6 +192,3 @@ typedef struct __ucontext {
|
||||||
#define SIGPWR 30
|
#define SIGPWR 30
|
||||||
#define SIGSYS 31
|
#define SIGSYS 31
|
||||||
#define SIGUNUSED SIGSYS
|
#define SIGUNUSED SIGSYS
|
||||||
|
|
||||||
#define _NSIG 65
|
|
||||||
|
|
||||||
|
|
209
arch/i386/bits/socket.h
Normal file
209
arch/i386/bits/socket.h
Normal file
|
@ -0,0 +1,209 @@
|
||||||
|
struct msghdr
|
||||||
|
{
|
||||||
|
void *msg_name;
|
||||||
|
socklen_t msg_namelen;
|
||||||
|
struct iovec *msg_iov;
|
||||||
|
int msg_iovlen;
|
||||||
|
void *msg_control;
|
||||||
|
socklen_t msg_controllen;
|
||||||
|
int msg_flags;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct cmsghdr
|
||||||
|
{
|
||||||
|
socklen_t cmsg_len;
|
||||||
|
int cmsg_level;
|
||||||
|
int cmsg_type;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct ucred
|
||||||
|
{
|
||||||
|
pid_t pid;
|
||||||
|
uid_t uid;
|
||||||
|
gid_t gid;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct linger
|
||||||
|
{
|
||||||
|
int l_onoff;
|
||||||
|
int l_linger;
|
||||||
|
};
|
||||||
|
|
||||||
|
#define SHUT_RD 0
|
||||||
|
#define SHUT_WD 1
|
||||||
|
#define SHUT_RDWR 2
|
||||||
|
|
||||||
|
#define SOCK_STREAM 1
|
||||||
|
#define SOCK_DGRAM 2
|
||||||
|
#define SOCK_RAW 3
|
||||||
|
#define SOCK_RDM 4
|
||||||
|
#define SOCK_SEQPACKET 5
|
||||||
|
#define SOCK_DCCP 6
|
||||||
|
#define SOCK_PACKET 10
|
||||||
|
|
||||||
|
/* linux extensions */
|
||||||
|
#define SOCK_CLOEXEC 02000000
|
||||||
|
#define SOCK_NONBLOCK 04000
|
||||||
|
|
||||||
|
#define PF_UNSPEC 0
|
||||||
|
#define PF_LOCAL 1
|
||||||
|
#define PF_UNIX PF_LOCAL
|
||||||
|
#define PF_FILE PF_LOCAL
|
||||||
|
#define PF_INET 2
|
||||||
|
#define PF_AX25 3
|
||||||
|
#define PF_IPX 4
|
||||||
|
#define PF_APPLETALK 5
|
||||||
|
#define PF_NETROM 6
|
||||||
|
#define PF_BRIDGE 7
|
||||||
|
#define PF_ATMPVC 8
|
||||||
|
#define PF_X25 9
|
||||||
|
#define PF_INET6 10
|
||||||
|
#define PF_ROSE 11
|
||||||
|
#define PF_DECnet 12
|
||||||
|
#define PF_NETBEUI 13
|
||||||
|
#define PF_SECURITY 14
|
||||||
|
#define PF_KEY 15
|
||||||
|
#define PF_NETLINK 16
|
||||||
|
#define PF_ROUTE PF_NETLINK
|
||||||
|
#define PF_PACKET 17
|
||||||
|
#define PF_ASH 18
|
||||||
|
#define PF_ECONET 19
|
||||||
|
#define PF_ATMSVC 20
|
||||||
|
#define PF_SNA 22
|
||||||
|
#define PF_IRDA 23
|
||||||
|
#define PF_PPPOX 24
|
||||||
|
#define PF_WANPIPE 25
|
||||||
|
#define PF_BLUETOOTH 31
|
||||||
|
#define PF_IUCV 32
|
||||||
|
#define PF_RXRPC 33
|
||||||
|
#define PF_ISDN 34
|
||||||
|
#define PF_PHONET 35
|
||||||
|
#define PF_IEEE802154 36
|
||||||
|
#define PF_CAIF 37
|
||||||
|
#define PF_ALG 38
|
||||||
|
#define PF_MAX 39
|
||||||
|
|
||||||
|
#define AF_UNSPEC PF_UNSPEC
|
||||||
|
#define AF_LOCAL PF_LOCAL
|
||||||
|
#define AF_UNIX AF_LOCAL
|
||||||
|
#define AF_FILE AF_LOCAL
|
||||||
|
#define AF_INET PF_INET
|
||||||
|
#define AF_AX25 PF_AX25
|
||||||
|
#define AF_IPX PF_IPX
|
||||||
|
#define AF_APPLETALK PF_APPLETALK
|
||||||
|
#define AF_NETROM PF_NETROM
|
||||||
|
#define AF_BRIDGE PF_BRIDGE
|
||||||
|
#define AF_ATMPVC PF_ATMPVC
|
||||||
|
#define AF_X25 PF_X25
|
||||||
|
#define AF_INET6 PF_INET6
|
||||||
|
#define AF_ROSE PF_ROSE
|
||||||
|
#define AF_DECnet PF_DECnet
|
||||||
|
#define AF_NETBEUI PF_NETBEUI
|
||||||
|
#define AF_SECURITY PF_SECURITY
|
||||||
|
#define AF_KEY PF_KEY
|
||||||
|
#define AF_NETLINK PF_NETLINK
|
||||||
|
#define AF_ROUTE AF_NETLINK
|
||||||
|
#define AF_PACKET PF_PACKET
|
||||||
|
#define AF_ASH PF_ASH
|
||||||
|
#define AF_ECONET PF_ECONET
|
||||||
|
#define AF_ATMSVC PF_ATMSVC
|
||||||
|
#define AF_SNA PF_SNA
|
||||||
|
#define AF_IRDA PF_IRDA
|
||||||
|
#define AF_PPPOX PF_PPPOX
|
||||||
|
#define AF_WANPIPE PF_WANPIPE
|
||||||
|
#define AF_BLUETOOTH PF_BLUETOOTH
|
||||||
|
#define AF_IUCV PF_IUCV
|
||||||
|
#define AF_RXRPC PF_RXRPC
|
||||||
|
#define AF_ISDN PF_ISDN
|
||||||
|
#define AF_PHONET PF_PHONET
|
||||||
|
#define AF_IEEE802154 PF_IEEE802154
|
||||||
|
#define AF_CAIF PF_CAIF
|
||||||
|
#define AF_ALG PF_ALG
|
||||||
|
#define AF_MAX PF_MAX
|
||||||
|
|
||||||
|
#define SO_DEBUG 1
|
||||||
|
#define SO_REUSEADDR 2
|
||||||
|
#define SO_TYPE 3
|
||||||
|
#define SO_ERROR 4
|
||||||
|
#define SO_DONTROUTE 5
|
||||||
|
#define SO_BROADCAST 6
|
||||||
|
#define SO_SNDBUF 7
|
||||||
|
#define SO_RCVBUF 8
|
||||||
|
#define SO_KEEPALIVE 9
|
||||||
|
#define SO_OOBINLINE 10
|
||||||
|
#define SO_NO_CHECK 11
|
||||||
|
#define SO_PRIORITY 12
|
||||||
|
#define SO_LINGER 13
|
||||||
|
#define SO_BSDCOMPAT 14
|
||||||
|
#define SO_REUSEPORT 15
|
||||||
|
#define SO_PASSCRED 16
|
||||||
|
#define SO_PEERCRED 17
|
||||||
|
#define SO_RCVLOWAT 18
|
||||||
|
#define SO_SNDLOWAT 19
|
||||||
|
#define SO_RCVTIMEO 20
|
||||||
|
#define SO_SNDTIMEO 21
|
||||||
|
|
||||||
|
#define SO_SECURITY_AUTHENTICATION 22
|
||||||
|
#define SO_SECURITY_ENCRYPTION_TRANSPORT 23
|
||||||
|
#define SO_SECURITY_ENCRYPTION_NETWORK 24
|
||||||
|
|
||||||
|
#define SO_BINDTODEVICE 25
|
||||||
|
|
||||||
|
#define SO_ATTACH_FILTER 26
|
||||||
|
#define SO_DETACH_FILTER 27
|
||||||
|
|
||||||
|
#define SO_PEERNAME 28
|
||||||
|
#define SO_TIMESTAMP 29
|
||||||
|
#define SCM_TIMESTAMP SO_TIMESTAMP
|
||||||
|
|
||||||
|
#define SO_ACCEPTCONN 30
|
||||||
|
|
||||||
|
#define SOL_SOCKET 1
|
||||||
|
|
||||||
|
/* ??? */
|
||||||
|
#define SOL_RAW 255
|
||||||
|
#define SOL_DECNET 261
|
||||||
|
#define SOL_X25 262
|
||||||
|
#define SOL_PACKET 263
|
||||||
|
#define SOL_ATM 264
|
||||||
|
#define SOL_AAL 265
|
||||||
|
#define SOL_IRDA 266
|
||||||
|
|
||||||
|
#define SOMAXCONN 128
|
||||||
|
|
||||||
|
#define MSG_OOB 0x0001
|
||||||
|
#define MSG_PEEK 0x0002
|
||||||
|
#define MSG_DONTROUTE 0x0004
|
||||||
|
#define MSG_CTRUNC 0x0008
|
||||||
|
#define MSG_PROXY 0x0010
|
||||||
|
#define MSG_TRUNC 0x0020
|
||||||
|
#define MSG_DONTWAIT 0x0040
|
||||||
|
#define MSG_EOR 0x0080
|
||||||
|
#define MSG_WAITALL 0x0100
|
||||||
|
#define MSG_FIN 0x0200
|
||||||
|
#define MSD_SYN 0x0400
|
||||||
|
#define MSG_CONFIRM 0x0800
|
||||||
|
#define MSG_RST 0x1000
|
||||||
|
#define MSG_ERRQUEUE 0x2000
|
||||||
|
#define MSG_NOSIGNAL 0x4000
|
||||||
|
#define MSG_MORE 0x8000
|
||||||
|
#define MSG_WAITFORONE 0x10000
|
||||||
|
#define MSG_CMSG_CLOEXEC 0x40000000
|
||||||
|
|
||||||
|
/* Internal use only!! to make CMSG_NXTHDR definition readable by mortals */
|
||||||
|
#define __CMSG_LEN(cmsg) (((cmsg)->cmsg_len + sizeof(long) - 1) & ~(long)(sizeof(long) - 1))
|
||||||
|
#define __CMSG_NEXT(cmsg) ((unsigned char *)(cmsg) + __CMSG_LEN(cmsg))
|
||||||
|
#define __MHDR_END(mhdr) ((unsigned char *)(mhdr)->msg_control + (mhdr)->msg_controllen)
|
||||||
|
|
||||||
|
#define CMSG_DATA(cmsg) ((unsigned char *) (((struct cmsghdr *)(cmsg)) + 1))
|
||||||
|
#define CMSG_NXTHDR(mhdr, cmsg) ((cmsg)->cmsg_len < sizeof (struct cmsghdr) ? (struct cmsghdr *)0 : \
|
||||||
|
(__CMSG_NEXT(cmsg) + sizeof (struct cmsghdr) >= __MHDR_END(mhdr) ? (struct cmsghdr *)0 : \
|
||||||
|
((struct cmsghdr *)__CMSG_NEXT(cmsg))))
|
||||||
|
#define CMSG_FIRSTHDR(mhdr) ((size_t) (mhdr)->msg_controllen >= sizeof (struct cmsghdr) ? (struct cmsghdr *) (mhdr)->msg_control : (struct cmsghdr *) 0)
|
||||||
|
|
||||||
|
#define CMSG_ALIGN(len) (((len) + sizeof (size_t) - 1) & (size_t) ~(sizeof (size_t) - 1))
|
||||||
|
#define CMSG_SPACE(len) (CMSG_ALIGN (len) + CMSG_ALIGN (sizeof (struct cmsghdr)))
|
||||||
|
#define CMSG_LEN(len) (CMSG_ALIGN (sizeof (struct cmsghdr)) + (len))
|
||||||
|
|
||||||
|
#define SCM_RIGHTS 0x01
|
||||||
|
#define SCM_CREDENTIALS 0x02
|
|
@ -1,7 +1,8 @@
|
||||||
/* copied from kernel definition, but with padding replaced
|
/* copied from kernel definition, but with padding replaced
|
||||||
* by the corresponding correctly-sized userspace types. */
|
* by the corresponding correctly-sized userspace types. */
|
||||||
|
|
||||||
struct stat {
|
struct stat
|
||||||
|
{
|
||||||
dev_t st_dev;
|
dev_t st_dev;
|
||||||
int __st_dev_padding;
|
int __st_dev_padding;
|
||||||
long __st_ino_truncated;
|
long __st_ino_truncated;
|
||||||
|
@ -14,12 +15,8 @@ struct stat {
|
||||||
off_t st_size;
|
off_t st_size;
|
||||||
blksize_t st_blksize;
|
blksize_t st_blksize;
|
||||||
blkcnt_t st_blocks;
|
blkcnt_t st_blocks;
|
||||||
struct {
|
|
||||||
long tv_sec;
|
|
||||||
long tv_nsec;
|
|
||||||
} __st_atim32, __st_mtim32, __st_ctim32;
|
|
||||||
ino_t st_ino;
|
|
||||||
struct timespec st_atim;
|
struct timespec st_atim;
|
||||||
struct timespec st_mtim;
|
struct timespec st_mtim;
|
||||||
struct timespec st_ctim;
|
struct timespec st_ctim;
|
||||||
|
ino_t st_ino;
|
||||||
};
|
};
|
||||||
|
|
16
arch/i386/bits/statfs.h
Normal file
16
arch/i386/bits/statfs.h
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
struct statvfs {
|
||||||
|
unsigned long f_type;
|
||||||
|
unsigned long f_bsize;
|
||||||
|
fsblkcnt_t f_blocks;
|
||||||
|
fsblkcnt_t f_bfree;
|
||||||
|
fsblkcnt_t f_bavail;
|
||||||
|
fsfilcnt_t f_files;
|
||||||
|
fsfilcnt_t f_ffree;
|
||||||
|
unsigned long f_fsid;
|
||||||
|
unsigned long __unused;
|
||||||
|
unsigned long f_namemax;
|
||||||
|
unsigned long f_frsize;
|
||||||
|
fsfilcnt_t f_favail;
|
||||||
|
unsigned long f_flag;
|
||||||
|
unsigned long __reserved[2];
|
||||||
|
};
|
9
arch/i386/bits/stdarg.h
Normal file
9
arch/i386/bits/stdarg.h
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
#define __VA_ALIGNED_SIZE(x) ((sizeof(x) + sizeof(int) - 1) & ~(sizeof(int) - 1))
|
||||||
|
|
||||||
|
#define va_start(ap, last) ((ap) = (void *)(((char *)&(last)) + __VA_ALIGNED_SIZE(last)))
|
||||||
|
#define va_end(ap) ((void)0)
|
||||||
|
#define va_copy(dest, src) ((dest) = (src))
|
||||||
|
|
||||||
|
#define va_arg(ap, type) \
|
||||||
|
( ((ap) = (va_list)((char *)(ap) + __VA_ALIGNED_SIZE(type))), \
|
||||||
|
*(type *)(void *)((char *)(ap) - __VA_ALIGNED_SIZE(type)) )
|
|
@ -1,29 +1,23 @@
|
||||||
typedef int32_t int_fast16_t;
|
#define INT_FAST8_MIN INT8_MIN
|
||||||
typedef int32_t int_fast32_t;
|
|
||||||
typedef uint32_t uint_fast16_t;
|
|
||||||
typedef uint32_t uint_fast32_t;
|
|
||||||
|
|
||||||
#define INT_FAST16_MIN INT32_MIN
|
#define INT_FAST16_MIN INT32_MIN
|
||||||
#define INT_FAST32_MIN INT32_MIN
|
#define INT_FAST32_MIN INT32_MIN
|
||||||
|
#define INT_FAST64_MIN INT64_MIN
|
||||||
|
|
||||||
|
#define INT_FAST8_MAX INT8_MAX
|
||||||
#define INT_FAST16_MAX INT32_MAX
|
#define INT_FAST16_MAX INT32_MAX
|
||||||
#define INT_FAST32_MAX INT32_MAX
|
#define INT_FAST32_MAX INT32_MAX
|
||||||
|
#define INT_FAST64_MAX INT64_MAX
|
||||||
|
|
||||||
|
#define UINT_FAST8_MAX UINT8_MAX
|
||||||
#define UINT_FAST16_MAX UINT32_MAX
|
#define UINT_FAST16_MAX UINT32_MAX
|
||||||
#define UINT_FAST32_MAX UINT32_MAX
|
#define UINT_FAST32_MAX UINT32_MAX
|
||||||
|
#define UINT_FAST64_MAX UINT64_MAX
|
||||||
|
|
||||||
#if __LONG_MAX == 0x7fffffffL
|
|
||||||
#define INTPTR_MIN INT32_MIN
|
#define INTPTR_MIN INT32_MIN
|
||||||
#define INTPTR_MAX INT32_MAX
|
#define INTPTR_MAX INT32_MAX
|
||||||
#define UINTPTR_MAX UINT32_MAX
|
#define UINTPTR_MAX UINT32_MAX
|
||||||
#define PTRDIFF_MIN INT32_MIN
|
#define PTRDIFF_MIN INT32_MIN
|
||||||
#define PTRDIFF_MAX INT32_MAX
|
#define PTRDIFF_MAX INT32_MAX
|
||||||
|
#define SIG_ATOMIC_MIN INT32_MIN
|
||||||
|
#define SIG_ATOMIC_MAX INT32_MAX
|
||||||
#define SIZE_MAX UINT32_MAX
|
#define SIZE_MAX UINT32_MAX
|
||||||
#else
|
|
||||||
#define INTPTR_MIN INT64_MIN
|
|
||||||
#define INTPTR_MAX INT64_MAX
|
|
||||||
#define UINTPTR_MAX UINT64_MAX
|
|
||||||
#define PTRDIFF_MIN INT64_MIN
|
|
||||||
#define PTRDIFF_MAX INT64_MAX
|
|
||||||
#define SIZE_MAX UINT64_MAX
|
|
||||||
#endif
|
|
947
arch/i386/bits/syscall.h
Normal file
947
arch/i386/bits/syscall.h
Normal file
|
@ -0,0 +1,947 @@
|
||||||
|
#define __SYSCALL_LL(x) \
|
||||||
|
((union { long long ll; long l[2]; }){ .ll = x }).l[0], \
|
||||||
|
((union { long long ll; long l[2]; }){ .ll = x }).l[1]
|
||||||
|
|
||||||
|
static inline long __syscall0(long __n)
|
||||||
|
{
|
||||||
|
unsigned long __ret;
|
||||||
|
__asm__ __volatile__ ("int $128" : "=a"(__ret) : "a"(__n) : "memory");
|
||||||
|
return __ret;
|
||||||
|
}
|
||||||
|
|
||||||
|
#ifndef __PIC__
|
||||||
|
|
||||||
|
static inline long __syscall1(long __n, long __a1)
|
||||||
|
{
|
||||||
|
unsigned long __ret;
|
||||||
|
__asm__ __volatile__ ("int $128" : "=a"(__ret) : "a"(__n), "b"(__a1) : "memory");
|
||||||
|
return __ret;
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline long __syscall2(long __n, long __a1, long __a2)
|
||||||
|
{
|
||||||
|
unsigned long __ret;
|
||||||
|
__asm__ __volatile__ ("int $128" : "=a"(__ret) : "a"(__n), "b"(__a1), "c"(__a2) : "memory");
|
||||||
|
return __ret;
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline long __syscall3(long __n, long __a1, long __a2, long __a3)
|
||||||
|
{
|
||||||
|
unsigned long __ret;
|
||||||
|
__asm__ __volatile__ ("int $128" : "=a"(__ret) : "a"(__n), "b"(__a1), "c"(__a2), "d"(__a3) : "memory");
|
||||||
|
return __ret;
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline long __syscall4(long __n, long __a1, long __a2, long __a3, long __a4)
|
||||||
|
{
|
||||||
|
unsigned long __ret;
|
||||||
|
__asm__ __volatile__ ("int $128" : "=a"(__ret) : "a"(__n), "b"(__a1), "c"(__a2), "d"(__a3), "S"(__a4) : "memory");
|
||||||
|
return __ret;
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline long __syscall5(long __n, long __a1, long __a2, long __a3, long __a4, long __a5)
|
||||||
|
{
|
||||||
|
unsigned long __ret;
|
||||||
|
__asm__ __volatile__ ("int $128" : "=a"(__ret) : "a"(__n), "b"(__a1), "c"(__a2), "d"(__a3), "S"(__a4), "D"(__a5) : "memory");
|
||||||
|
return __ret;
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline long __syscall6(long __n, long __a1, long __a2, long __a3, long __a4, long __a5, long __a6)
|
||||||
|
{
|
||||||
|
unsigned long __ret;
|
||||||
|
__asm__ __volatile__ ("pushl %7 ; pushl %%ebp ; mov 4(%%esp),%%ebp ; int $128 ; popl %%ebp ; popl %%ecx"
|
||||||
|
: "=a"(__ret) : "a"(__n), "b"(__a1), "c"(__a2), "d"(__a3), "S"(__a4), "D"(__a5), "g"(__a6) : "memory");
|
||||||
|
return __ret;
|
||||||
|
}
|
||||||
|
|
||||||
|
#else
|
||||||
|
|
||||||
|
static inline long __syscall1(long __n, long __a1)
|
||||||
|
{
|
||||||
|
unsigned long __ret;
|
||||||
|
__asm__ __volatile__ ("xchg %2,%%ebx ; int $128 ; xchg %2,%%ebx"
|
||||||
|
: "=a"(__ret) : "a"(__n), "r"(__a1) : "memory");
|
||||||
|
return __ret;
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline long __syscall2(long __n, long __a1, long __a2)
|
||||||
|
{
|
||||||
|
unsigned long __ret;
|
||||||
|
__asm__ __volatile__ ("xchg %2,%%ebx ; int $128 ; xchg %2,%%ebx"
|
||||||
|
: "=a"(__ret) : "a"(__n), "r"(__a1), "c"(__a2) : "memory");
|
||||||
|
return __ret;
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline long __syscall3(long __n, long __a1, long __a2, long __a3)
|
||||||
|
{
|
||||||
|
unsigned long __ret;
|
||||||
|
__asm__ __volatile__ ("xchg %2,%%ebx ; int $128 ; xchg %2,%%ebx"
|
||||||
|
: "=a"(__ret) : "a"(__n), "r"(__a1), "c"(__a2), "d"(__a3) : "memory");
|
||||||
|
return __ret;
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline long __syscall4(long __n, long __a1, long __a2, long __a3, long __a4)
|
||||||
|
{
|
||||||
|
unsigned long __ret;
|
||||||
|
__asm__ __volatile__ ("xchg %2,%%ebx ; int $128 ; xchg %2,%%ebx"
|
||||||
|
: "=a"(__ret) : "a"(__n), "r"(__a1), "c"(__a2), "d"(__a3), "S"(__a4) : "memory");
|
||||||
|
return __ret;
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline long __syscall5(long __n, long __a1, long __a2, long __a3, long __a4, long __a5)
|
||||||
|
{
|
||||||
|
unsigned long __ret;
|
||||||
|
__asm__ __volatile__ ("pushl %2 ; pushl %%ebx ; mov 4(%%esp),%%ebx ; int $128 ; popl %%ebx ; popl %%ecx"
|
||||||
|
: "=a"(__ret) : "a"(__n), "g"(__a1), "c"(__a2), "d"(__a3), "S"(__a4), "D"(__a5) : "memory");
|
||||||
|
return __ret;
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline long __syscall6(long __n, long __a1, long __a2, long __a3, long __a4, long __a5, long __a6)
|
||||||
|
{
|
||||||
|
return (__syscall)(__n, __a1, __a2, __a3, __a4, __a5, __a6);
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
#define __SC_socket 1
|
||||||
|
#define __SC_bind 2
|
||||||
|
#define __SC_connect 3
|
||||||
|
#define __SC_listen 4
|
||||||
|
#define __SC_accept 5
|
||||||
|
#define __SC_getsockname 6
|
||||||
|
#define __SC_getpeername 7
|
||||||
|
#define __SC_socketpair 8
|
||||||
|
#define __SC_send 9
|
||||||
|
#define __SC_recv 10
|
||||||
|
#define __SC_sendto 11
|
||||||
|
#define __SC_recvfrom 12
|
||||||
|
#define __SC_shutdown 13
|
||||||
|
#define __SC_setsockopt 14
|
||||||
|
#define __SC_getsockopt 15
|
||||||
|
#define __SC_sendmsg 16
|
||||||
|
#define __SC_recvmsg 17
|
||||||
|
|
||||||
|
#define __socketcall(nm,a,b,c,d,e,f) syscall(SYS_socketcall, __SC_##nm, \
|
||||||
|
((long [6]){ (long)a, (long)b, (long)c, (long)d, (long)e, (long)f }))
|
||||||
|
#define __socketcall_cp(nm,a,b,c,d,e,f) syscall_cp(SYS_socketcall, __SC_##nm, \
|
||||||
|
((long [6]){ (long)a, (long)b, (long)c, (long)d, (long)e, (long)f }))
|
||||||
|
|
||||||
|
#define __NR_restart_syscall 0
|
||||||
|
#define __NR_exit 1
|
||||||
|
#define __NR_fork 2
|
||||||
|
#define __NR_read 3
|
||||||
|
#define __NR_write 4
|
||||||
|
#define __NR_open 5
|
||||||
|
#define __NR_close 6
|
||||||
|
#define __NR_waitpid 7
|
||||||
|
#define __NR_creat 8
|
||||||
|
#define __NR_link 9
|
||||||
|
#define __NR_unlink 10
|
||||||
|
#define __NR_execve 11
|
||||||
|
#define __NR_chdir 12
|
||||||
|
#define __NR_time 13
|
||||||
|
#define __NR_mknod 14
|
||||||
|
#define __NR_chmod 15
|
||||||
|
#define __NR_lchown 16
|
||||||
|
#define __NR_break 17
|
||||||
|
#define __NR_oldstat 18
|
||||||
|
#define __NR_lseek 19
|
||||||
|
#define __NR_getpid 20
|
||||||
|
#define __NR_mount 21
|
||||||
|
#define __NR_umount 22
|
||||||
|
#define __NR_setuid 23
|
||||||
|
#define __NR_getuid 24
|
||||||
|
#define __NR_stime 25
|
||||||
|
#define __NR_ptrace 26
|
||||||
|
#define __NR_alarm 27
|
||||||
|
#define __NR_oldfstat 28
|
||||||
|
#define __NR_pause 29
|
||||||
|
#define __NR_utime 30
|
||||||
|
#define __NR_stty 31
|
||||||
|
#define __NR_gtty 32
|
||||||
|
#define __NR_access 33
|
||||||
|
#define __NR_nice 34
|
||||||
|
#define __NR_ftime 35
|
||||||
|
#define __NR_sync 36
|
||||||
|
#define __NR_kill 37
|
||||||
|
#define __NR_rename 38
|
||||||
|
#define __NR_mkdir 39
|
||||||
|
#define __NR_rmdir 40
|
||||||
|
#define __NR_dup 41
|
||||||
|
#define __NR_pipe 42
|
||||||
|
#define __NR_times 43
|
||||||
|
#define __NR_prof 44
|
||||||
|
#define __NR_brk 45
|
||||||
|
#define __NR_setgid 46
|
||||||
|
#define __NR_getgid 47
|
||||||
|
#define __NR_signal 48
|
||||||
|
#define __NR_geteuid 49
|
||||||
|
#define __NR_getegid 50
|
||||||
|
#define __NR_acct 51
|
||||||
|
#define __NR_umount2 52
|
||||||
|
#define __NR_lock 53
|
||||||
|
#define __NR_ioctl 54
|
||||||
|
#define __NR_fcntl 55
|
||||||
|
#define __NR_mpx 56
|
||||||
|
#define __NR_setpgid 57
|
||||||
|
#define __NR_ulimit 58
|
||||||
|
#define __NR_oldolduname 59
|
||||||
|
#define __NR_umask 60
|
||||||
|
#define __NR_chroot 61
|
||||||
|
#define __NR_ustat 62
|
||||||
|
#define __NR_dup2 63
|
||||||
|
#define __NR_getppid 64
|
||||||
|
#define __NR_getpgrp 65
|
||||||
|
#define __NR_setsid 66
|
||||||
|
#define __NR_sigaction 67
|
||||||
|
#define __NR_sgetmask 68
|
||||||
|
#define __NR_ssetmask 69
|
||||||
|
#define __NR_setreuid 70
|
||||||
|
#define __NR_setregid 71
|
||||||
|
#define __NR_sigsuspend 72
|
||||||
|
#define __NR_sigpending 73
|
||||||
|
#define __NR_sethostname 74
|
||||||
|
#define __NR_setrlimit 75
|
||||||
|
#define __NR_getrlimit 76 /* Back compatible 2Gig limited rlimit */
|
||||||
|
#define __NR_getrusage 77
|
||||||
|
#define __NR_gettimeofday 78
|
||||||
|
#define __NR_settimeofday 79
|
||||||
|
#define __NR_getgroups 80
|
||||||
|
#define __NR_setgroups 81
|
||||||
|
#define __NR_select 82
|
||||||
|
#define __NR_symlink 83
|
||||||
|
#define __NR_oldlstat 84
|
||||||
|
#define __NR_readlink 85
|
||||||
|
#define __NR_uselib 86
|
||||||
|
#define __NR_swapon 87
|
||||||
|
#define __NR_reboot 88
|
||||||
|
#define __NR_readdir 89
|
||||||
|
#define __NR_mmap 90
|
||||||
|
#define __NR_munmap 91
|
||||||
|
#define __NR_truncate 92
|
||||||
|
#define __NR_ftruncate 93
|
||||||
|
#define __NR_fchmod 94
|
||||||
|
#define __NR_fchown 95
|
||||||
|
#define __NR_getpriority 96
|
||||||
|
#define __NR_setpriority 97
|
||||||
|
#define __NR_profil 98
|
||||||
|
#define __NR_statfs 99
|
||||||
|
#define __NR_fstatfs 100
|
||||||
|
#define __NR_ioperm 101
|
||||||
|
#define __NR_socketcall 102
|
||||||
|
#define __NR_syslog 103
|
||||||
|
#define __NR_setitimer 104
|
||||||
|
#define __NR_getitimer 105
|
||||||
|
#define __NR_stat 106
|
||||||
|
#define __NR_lstat 107
|
||||||
|
#define __NR_fstat 108
|
||||||
|
#define __NR_olduname 109
|
||||||
|
#define __NR_iopl 110
|
||||||
|
#define __NR_vhangup 111
|
||||||
|
#define __NR_idle 112
|
||||||
|
#define __NR_vm86old 113
|
||||||
|
#define __NR_wait4 114
|
||||||
|
#define __NR_swapoff 115
|
||||||
|
#define __NR_sysinfo 116
|
||||||
|
#define __NR_ipc 117
|
||||||
|
#define __NR_fsync 118
|
||||||
|
#define __NR_sigreturn 119
|
||||||
|
#define __NR_clone 120
|
||||||
|
#define __NR_setdomainname 121
|
||||||
|
#define __NR_uname 122
|
||||||
|
#define __NR_modify_ldt 123
|
||||||
|
#define __NR_adjtimex 124
|
||||||
|
#define __NR_mprotect 125
|
||||||
|
#define __NR_sigprocmask 126
|
||||||
|
#define __NR_create_module 127
|
||||||
|
#define __NR_init_module 128
|
||||||
|
#define __NR_delete_module 129
|
||||||
|
#define __NR_get_kernel_syms 130
|
||||||
|
#define __NR_quotactl 131
|
||||||
|
#define __NR_getpgid 132
|
||||||
|
#define __NR_fchdir 133
|
||||||
|
#define __NR_bdflush 134
|
||||||
|
#define __NR_sysfs 135
|
||||||
|
#define __NR_personality 136
|
||||||
|
#define __NR_afs_syscall 137
|
||||||
|
#define __NR_setfsuid 138
|
||||||
|
#define __NR_setfsgid 139
|
||||||
|
#define __NR__llseek 140
|
||||||
|
#define __NR_getdents 141
|
||||||
|
#define __NR__newselect 142
|
||||||
|
#define __NR_flock 143
|
||||||
|
#define __NR_msync 144
|
||||||
|
#define __NR_readv 145
|
||||||
|
#define __NR_writev 146
|
||||||
|
#define __NR_getsid 147
|
||||||
|
#define __NR_fdatasync 148
|
||||||
|
#define __NR__sysctl 149
|
||||||
|
#define __NR_mlock 150
|
||||||
|
#define __NR_munlock 151
|
||||||
|
#define __NR_mlockall 152
|
||||||
|
#define __NR_munlockall 153
|
||||||
|
#define __NR_sched_setparam 154
|
||||||
|
#define __NR_sched_getparam 155
|
||||||
|
#define __NR_sched_setscheduler 156
|
||||||
|
#define __NR_sched_getscheduler 157
|
||||||
|
#define __NR_sched_yield 158
|
||||||
|
#define __NR_sched_get_priority_max 159
|
||||||
|
#define __NR_sched_get_priority_min 160
|
||||||
|
#define __NR_sched_rr_get_interval 161
|
||||||
|
#define __NR_nanosleep 162
|
||||||
|
#define __NR_mremap 163
|
||||||
|
#define __NR_setresuid 164
|
||||||
|
#define __NR_getresuid 165
|
||||||
|
#define __NR_vm86 166
|
||||||
|
#define __NR_query_module 167
|
||||||
|
#define __NR_poll 168
|
||||||
|
#define __NR_nfsservctl 169
|
||||||
|
#define __NR_setresgid 170
|
||||||
|
#define __NR_getresgid 171
|
||||||
|
#define __NR_prctl 172
|
||||||
|
#define __NR_rt_sigreturn 173
|
||||||
|
#define __NR_rt_sigaction 174
|
||||||
|
#define __NR_rt_sigprocmask 175
|
||||||
|
#define __NR_rt_sigpending 176
|
||||||
|
#define __NR_rt_sigtimedwait 177
|
||||||
|
#define __NR_rt_sigqueueinfo 178
|
||||||
|
#define __NR_rt_sigsuspend 179
|
||||||
|
#define __NR_pread64 180
|
||||||
|
#define __NR_pwrite64 181
|
||||||
|
#define __NR_chown 182
|
||||||
|
#define __NR_getcwd 183
|
||||||
|
#define __NR_capget 184
|
||||||
|
#define __NR_capset 185
|
||||||
|
#define __NR_sigaltstack 186
|
||||||
|
#define __NR_sendfile 187
|
||||||
|
#define __NR_getpmsg 188
|
||||||
|
#define __NR_putpmsg 189
|
||||||
|
#define __NR_vfork 190
|
||||||
|
#define __NR_ugetrlimit 191
|
||||||
|
#define __NR_mmap2 192
|
||||||
|
#define __NR_truncate64 193
|
||||||
|
#define __NR_ftruncate64 194
|
||||||
|
#define __NR_stat64 195
|
||||||
|
#define __NR_lstat64 196
|
||||||
|
#define __NR_fstat64 197
|
||||||
|
#define __NR_lchown32 198
|
||||||
|
#define __NR_getuid32 199
|
||||||
|
#define __NR_getgid32 200
|
||||||
|
#define __NR_geteuid32 201
|
||||||
|
#define __NR_getegid32 202
|
||||||
|
#define __NR_setreuid32 203
|
||||||
|
#define __NR_setregid32 204
|
||||||
|
#define __NR_getgroups32 205
|
||||||
|
#define __NR_setgroups32 206
|
||||||
|
#define __NR_fchown32 207
|
||||||
|
#define __NR_setresuid32 208
|
||||||
|
#define __NR_getresuid32 209
|
||||||
|
#define __NR_setresgid32 210
|
||||||
|
#define __NR_getresgid32 211
|
||||||
|
#define __NR_chown32 212
|
||||||
|
#define __NR_setuid32 213
|
||||||
|
#define __NR_setgid32 214
|
||||||
|
#define __NR_setfsuid32 215
|
||||||
|
#define __NR_setfsgid32 216
|
||||||
|
#define __NR_pivot_root 217
|
||||||
|
#define __NR_mincore 218
|
||||||
|
#define __NR_madvise 219
|
||||||
|
#define __NR_madvise1 219
|
||||||
|
#define __NR_getdents64 220
|
||||||
|
#define __NR_fcntl64 221
|
||||||
|
/* 223 is unused */
|
||||||
|
#define __NR_gettid 224
|
||||||
|
#define __NR_readahead 225
|
||||||
|
#define __NR_setxattr 226
|
||||||
|
#define __NR_lsetxattr 227
|
||||||
|
#define __NR_fsetxattr 228
|
||||||
|
#define __NR_getxattr 229
|
||||||
|
#define __NR_lgetxattr 230
|
||||||
|
#define __NR_fgetxattr 231
|
||||||
|
#define __NR_listxattr 232
|
||||||
|
#define __NR_llistxattr 233
|
||||||
|
#define __NR_flistxattr 234
|
||||||
|
#define __NR_removexattr 235
|
||||||
|
#define __NR_lremovexattr 236
|
||||||
|
#define __NR_fremovexattr 237
|
||||||
|
#define __NR_tkill 238
|
||||||
|
#define __NR_sendfile64 239
|
||||||
|
#define __NR_futex 240
|
||||||
|
#define __NR_sched_setaffinity 241
|
||||||
|
#define __NR_sched_getaffinity 242
|
||||||
|
#define __NR_set_thread_area 243
|
||||||
|
#define __NR_get_thread_area 244
|
||||||
|
#define __NR_io_setup 245
|
||||||
|
#define __NR_io_destroy 246
|
||||||
|
#define __NR_io_getevents 247
|
||||||
|
#define __NR_io_submit 248
|
||||||
|
#define __NR_io_cancel 249
|
||||||
|
#define __NR_fadvise64 250
|
||||||
|
/* 251 is available for reuse (was briefly sys_set_zone_reclaim) */
|
||||||
|
#define __NR_exit_group 252
|
||||||
|
#define __NR_lookup_dcookie 253
|
||||||
|
#define __NR_epoll_create 254
|
||||||
|
#define __NR_epoll_ctl 255
|
||||||
|
#define __NR_epoll_wait 256
|
||||||
|
#define __NR_remap_file_pages 257
|
||||||
|
#define __NR_set_tid_address 258
|
||||||
|
#define __NR_timer_create 259
|
||||||
|
#define __NR_timer_settime (__NR_timer_create+1)
|
||||||
|
#define __NR_timer_gettime (__NR_timer_create+2)
|
||||||
|
#define __NR_timer_getoverrun (__NR_timer_create+3)
|
||||||
|
#define __NR_timer_delete (__NR_timer_create+4)
|
||||||
|
#define __NR_clock_settime (__NR_timer_create+5)
|
||||||
|
#define __NR_clock_gettime (__NR_timer_create+6)
|
||||||
|
#define __NR_clock_getres (__NR_timer_create+7)
|
||||||
|
#define __NR_clock_nanosleep (__NR_timer_create+8)
|
||||||
|
#define __NR_statfs64 268
|
||||||
|
#define __NR_fstatfs64 269
|
||||||
|
#define __NR_tgkill 270
|
||||||
|
#define __NR_utimes 271
|
||||||
|
#define __NR_fadvise64_64 272
|
||||||
|
#define __NR_vserver 273
|
||||||
|
#define __NR_mbind 274
|
||||||
|
#define __NR_get_mempolicy 275
|
||||||
|
#define __NR_set_mempolicy 276
|
||||||
|
#define __NR_mq_open 277
|
||||||
|
#define __NR_mq_unlink (__NR_mq_open+1)
|
||||||
|
#define __NR_mq_timedsend (__NR_mq_open+2)
|
||||||
|
#define __NR_mq_timedreceive (__NR_mq_open+3)
|
||||||
|
#define __NR_mq_notify (__NR_mq_open+4)
|
||||||
|
#define __NR_mq_getsetattr (__NR_mq_open+5)
|
||||||
|
#define __NR_kexec_load 283
|
||||||
|
#define __NR_waitid 284
|
||||||
|
/* #define __NR_sys_setaltroot 285 */
|
||||||
|
#define __NR_add_key 286
|
||||||
|
#define __NR_request_key 287
|
||||||
|
#define __NR_keyctl 288
|
||||||
|
#define __NR_ioprio_set 289
|
||||||
|
#define __NR_ioprio_get 290
|
||||||
|
#define __NR_inotify_init 291
|
||||||
|
#define __NR_inotify_add_watch 292
|
||||||
|
#define __NR_inotify_rm_watch 293
|
||||||
|
#define __NR_migrate_pages 294
|
||||||
|
#define __NR_openat 295
|
||||||
|
#define __NR_mkdirat 296
|
||||||
|
#define __NR_mknodat 297
|
||||||
|
#define __NR_fchownat 298
|
||||||
|
#define __NR_futimesat 299
|
||||||
|
#define __NR_fstatat64 300
|
||||||
|
#define __NR_unlinkat 301
|
||||||
|
#define __NR_renameat 302
|
||||||
|
#define __NR_linkat 303
|
||||||
|
#define __NR_symlinkat 304
|
||||||
|
#define __NR_readlinkat 305
|
||||||
|
#define __NR_fchmodat 306
|
||||||
|
#define __NR_faccessat 307
|
||||||
|
#define __NR_pselect6 308
|
||||||
|
#define __NR_ppoll 309
|
||||||
|
#define __NR_unshare 310
|
||||||
|
#define __NR_set_robust_list 311
|
||||||
|
#define __NR_get_robust_list 312
|
||||||
|
#define __NR_splice 313
|
||||||
|
#define __NR_sync_file_range 314
|
||||||
|
#define __NR_tee 315
|
||||||
|
#define __NR_vmsplice 316
|
||||||
|
#define __NR_move_pages 317
|
||||||
|
#define __NR_getcpu 318
|
||||||
|
#define __NR_epoll_pwait 319
|
||||||
|
#define __NR_utimensat 320
|
||||||
|
#define __NR_signalfd 321
|
||||||
|
#define __NR_timerfd_create 322
|
||||||
|
#define __NR_eventfd 323
|
||||||
|
#define __NR_fallocate 324
|
||||||
|
#define __NR_timerfd_settime 325
|
||||||
|
#define __NR_timerfd_gettime 326
|
||||||
|
#define __NR_signalfd4 327
|
||||||
|
#define __NR_eventfd2 328
|
||||||
|
#define __NR_epoll_create1 329
|
||||||
|
#define __NR_dup3 330
|
||||||
|
#define __NR_pipe2 331
|
||||||
|
#define __NR_inotify_init1 332
|
||||||
|
#define __NR_preadv 333
|
||||||
|
#define __NR_pwritev 334
|
||||||
|
|
||||||
|
/* fixup legacy 16-bit junk */
|
||||||
|
#undef __NR_lchown
|
||||||
|
#undef __NR_getuid
|
||||||
|
#undef __NR_getgid
|
||||||
|
#undef __NR_geteuid
|
||||||
|
#undef __NR_getegid
|
||||||
|
#undef __NR_setreuid
|
||||||
|
#undef __NR_setregid
|
||||||
|
#undef __NR_getgroups
|
||||||
|
#undef __NR_setgroups
|
||||||
|
#undef __NR_fchown
|
||||||
|
#undef __NR_setresuid
|
||||||
|
#undef __NR_getresuid
|
||||||
|
#undef __NR_setresgid
|
||||||
|
#undef __NR_getresgid
|
||||||
|
#undef __NR_chown
|
||||||
|
#undef __NR_setuid
|
||||||
|
#undef __NR_setgid
|
||||||
|
#undef __NR_setfsuid
|
||||||
|
#undef __NR_setfsgid
|
||||||
|
#define __NR_lchown __NR_lchown32
|
||||||
|
#define __NR_getuid __NR_getuid32
|
||||||
|
#define __NR_getgid __NR_getgid32
|
||||||
|
#define __NR_geteuid __NR_geteuid32
|
||||||
|
#define __NR_getegid __NR_getegid32
|
||||||
|
#define __NR_setreuid __NR_setreuid32
|
||||||
|
#define __NR_setregid __NR_setregid32
|
||||||
|
#define __NR_getgroups __NR_getgroups32
|
||||||
|
#define __NR_setgroups __NR_setgroups32
|
||||||
|
#define __NR_fchown __NR_fchown32
|
||||||
|
#define __NR_setresuid __NR_setresuid32
|
||||||
|
#define __NR_getresuid __NR_getresuid32
|
||||||
|
#define __NR_setresgid __NR_setresgid32
|
||||||
|
#define __NR_getresgid __NR_getresgid32
|
||||||
|
#define __NR_chown __NR_chown32
|
||||||
|
#define __NR_setuid __NR_setuid32
|
||||||
|
#define __NR_setgid __NR_setgid32
|
||||||
|
#define __NR_setfsuid __NR_setfsuid32
|
||||||
|
#define __NR_setfsgid __NR_setfsgid32
|
||||||
|
|
||||||
|
|
||||||
|
/* fixup legacy 32-bit-vs-lfs64 junk */
|
||||||
|
#undef __NR_fcntl
|
||||||
|
#undef __NR_getdents
|
||||||
|
#undef __NR_ftruncate
|
||||||
|
#undef __NR_truncate
|
||||||
|
#undef __NR_stat
|
||||||
|
#undef __NR_fstat
|
||||||
|
#undef __NR_lstat
|
||||||
|
#undef __NR_statfs
|
||||||
|
#undef __NR_fstatfs
|
||||||
|
#define __NR_fcntl __NR_fcntl64
|
||||||
|
#define __NR_getdents __NR_getdents64
|
||||||
|
#define __NR_ftruncate __NR_ftruncate64
|
||||||
|
#define __NR_truncate __NR_truncate64
|
||||||
|
#define __NR_stat __NR_stat64
|
||||||
|
#define __NR_fstat __NR_fstat64
|
||||||
|
#define __NR_lstat __NR_lstat64
|
||||||
|
#define __NR_statfs __NR_statfs64
|
||||||
|
#define __NR_fstatfs __NR_fstatfs64
|
||||||
|
#define __NR_fstatat __NR_fstatat64
|
||||||
|
#define __NR_pread __NR_pread64
|
||||||
|
#define __NR_pwrite __NR_pwrite64
|
||||||
|
|
||||||
|
#define __NR_fadvise __NR_fadvise64_64
|
||||||
|
|
||||||
|
#undef __NR_getrlimit
|
||||||
|
#define __NR_getrlimit __NR_ugetrlimit
|
||||||
|
|
||||||
|
#undef __NR_select
|
||||||
|
#define __NR_select __NR__newselect
|
||||||
|
|
||||||
|
|
||||||
|
/* Repeated with SYS_ prefix */
|
||||||
|
|
||||||
|
#define SYS_restart_syscall 0
|
||||||
|
#define SYS_exit 1
|
||||||
|
#define SYS_fork 2
|
||||||
|
#define SYS_read 3
|
||||||
|
#define SYS_write 4
|
||||||
|
#define SYS_open 5
|
||||||
|
#define SYS_close 6
|
||||||
|
#define SYS_waitpid 7
|
||||||
|
#define SYS_creat 8
|
||||||
|
#define SYS_link 9
|
||||||
|
#define SYS_unlink 10
|
||||||
|
#define SYS_execve 11
|
||||||
|
#define SYS_chdir 12
|
||||||
|
#define SYS_time 13
|
||||||
|
#define SYS_mknod 14
|
||||||
|
#define SYS_chmod 15
|
||||||
|
#define SYS_lchown 16
|
||||||
|
#define SYS_break 17
|
||||||
|
#define SYS_oldstat 18
|
||||||
|
#define SYS_lseek 19
|
||||||
|
#define SYS_getpid 20
|
||||||
|
#define SYS_mount 21
|
||||||
|
#define SYS_umount 22
|
||||||
|
#define SYS_setuid 23
|
||||||
|
#define SYS_getuid 24
|
||||||
|
#define SYS_stime 25
|
||||||
|
#define SYS_ptrace 26
|
||||||
|
#define SYS_alarm 27
|
||||||
|
#define SYS_oldfstat 28
|
||||||
|
#define SYS_pause 29
|
||||||
|
#define SYS_utime 30
|
||||||
|
#define SYS_stty 31
|
||||||
|
#define SYS_gtty 32
|
||||||
|
#define SYS_access 33
|
||||||
|
#define SYS_nice 34
|
||||||
|
#define SYS_ftime 35
|
||||||
|
#define SYS_sync 36
|
||||||
|
#define SYS_kill 37
|
||||||
|
#define SYS_rename 38
|
||||||
|
#define SYS_mkdir 39
|
||||||
|
#define SYS_rmdir 40
|
||||||
|
#define SYS_dup 41
|
||||||
|
#define SYS_pipe 42
|
||||||
|
#define SYS_times 43
|
||||||
|
#define SYS_prof 44
|
||||||
|
#define SYS_brk 45
|
||||||
|
#define SYS_setgid 46
|
||||||
|
#define SYS_getgid 47
|
||||||
|
#define SYS_signal 48
|
||||||
|
#define SYS_geteuid 49
|
||||||
|
#define SYS_getegid 50
|
||||||
|
#define SYS_acct 51
|
||||||
|
#define SYS_umount2 52
|
||||||
|
#define SYS_lock 53
|
||||||
|
#define SYS_ioctl 54
|
||||||
|
#define SYS_fcntl 55
|
||||||
|
#define SYS_mpx 56
|
||||||
|
#define SYS_setpgid 57
|
||||||
|
#define SYS_ulimit 58
|
||||||
|
#define SYS_oldolduname 59
|
||||||
|
#define SYS_umask 60
|
||||||
|
#define SYS_chroot 61
|
||||||
|
#define SYS_ustat 62
|
||||||
|
#define SYS_dup2 63
|
||||||
|
#define SYS_getppid 64
|
||||||
|
#define SYS_getpgrp 65
|
||||||
|
#define SYS_setsid 66
|
||||||
|
#define SYS_sigaction 67
|
||||||
|
#define SYS_sgetmask 68
|
||||||
|
#define SYS_ssetmask 69
|
||||||
|
#define SYS_setreuid 70
|
||||||
|
#define SYS_setregid 71
|
||||||
|
#define SYS_sigsuspend 72
|
||||||
|
#define SYS_sigpending 73
|
||||||
|
#define SYS_sethostname 74
|
||||||
|
#define SYS_setrlimit 75
|
||||||
|
#define SYS_getrlimit 76 /* Back compatible 2Gig limited rlimit */
|
||||||
|
#define SYS_getrusage 77
|
||||||
|
#define SYS_gettimeofday 78
|
||||||
|
#define SYS_settimeofday 79
|
||||||
|
#define SYS_getgroups 80
|
||||||
|
#define SYS_setgroups 81
|
||||||
|
#define SYS_select 82
|
||||||
|
#define SYS_symlink 83
|
||||||
|
#define SYS_oldlstat 84
|
||||||
|
#define SYS_readlink 85
|
||||||
|
#define SYS_uselib 86
|
||||||
|
#define SYS_swapon 87
|
||||||
|
#define SYS_reboot 88
|
||||||
|
#define SYS_readdir 89
|
||||||
|
#define SYS_mmap 90
|
||||||
|
#define SYS_munmap 91
|
||||||
|
#define SYS_truncate 92
|
||||||
|
#define SYS_ftruncate 93
|
||||||
|
#define SYS_fchmod 94
|
||||||
|
#define SYS_fchown 95
|
||||||
|
#define SYS_getpriority 96
|
||||||
|
#define SYS_setpriority 97
|
||||||
|
#define SYS_profil 98
|
||||||
|
#define SYS_statfs 99
|
||||||
|
#define SYS_fstatfs 100
|
||||||
|
#define SYS_ioperm 101
|
||||||
|
#define SYS_socketcall 102
|
||||||
|
#define SYS_syslog 103
|
||||||
|
#define SYS_setitimer 104
|
||||||
|
#define SYS_getitimer 105
|
||||||
|
#define SYS_stat 106
|
||||||
|
#define SYS_lstat 107
|
||||||
|
#define SYS_fstat 108
|
||||||
|
#define SYS_olduname 109
|
||||||
|
#define SYS_iopl 110
|
||||||
|
#define SYS_vhangup 111
|
||||||
|
#define SYS_idle 112
|
||||||
|
#define SYS_vm86old 113
|
||||||
|
#define SYS_wait4 114
|
||||||
|
#define SYS_swapoff 115
|
||||||
|
#define SYS_sysinfo 116
|
||||||
|
#define SYS_ipc 117
|
||||||
|
#define SYS_fsync 118
|
||||||
|
#define SYS_sigreturn 119
|
||||||
|
#define SYS_clone 120
|
||||||
|
#define SYS_setdomainname 121
|
||||||
|
#define SYS_uname 122
|
||||||
|
#define SYS_modify_ldt 123
|
||||||
|
#define SYS_adjtimex 124
|
||||||
|
#define SYS_mprotect 125
|
||||||
|
#define SYS_sigprocmask 126
|
||||||
|
#define SYS_create_module 127
|
||||||
|
#define SYS_init_module 128
|
||||||
|
#define SYS_delete_module 129
|
||||||
|
#define SYS_get_kernel_syms 130
|
||||||
|
#define SYS_quotactl 131
|
||||||
|
#define SYS_getpgid 132
|
||||||
|
#define SYS_fchdir 133
|
||||||
|
#define SYS_bdflush 134
|
||||||
|
#define SYS_sysfs 135
|
||||||
|
#define SYS_personality 136
|
||||||
|
#define SYS_afs_syscall 137
|
||||||
|
#define SYS_setfsuid 138
|
||||||
|
#define SYS_setfsgid 139
|
||||||
|
#define SYS__llseek 140
|
||||||
|
#define SYS_getdents 141
|
||||||
|
#define SYS__newselect 142
|
||||||
|
#define SYS_flock 143
|
||||||
|
#define SYS_msync 144
|
||||||
|
#define SYS_readv 145
|
||||||
|
#define SYS_writev 146
|
||||||
|
#define SYS_getsid 147
|
||||||
|
#define SYS_fdatasync 148
|
||||||
|
#define SYS__sysctl 149
|
||||||
|
#define SYS_mlock 150
|
||||||
|
#define SYS_munlock 151
|
||||||
|
#define SYS_mlockall 152
|
||||||
|
#define SYS_munlockall 153
|
||||||
|
#define SYS_sched_setparam 154
|
||||||
|
#define SYS_sched_getparam 155
|
||||||
|
#define SYS_sched_setscheduler 156
|
||||||
|
#define SYS_sched_getscheduler 157
|
||||||
|
#define SYS_sched_yield 158
|
||||||
|
#define SYS_sched_get_priority_max 159
|
||||||
|
#define SYS_sched_get_priority_min 160
|
||||||
|
#define SYS_sched_rr_get_interval 161
|
||||||
|
#define SYS_nanosleep 162
|
||||||
|
#define SYS_mremap 163
|
||||||
|
#define SYS_setresuid 164
|
||||||
|
#define SYS_getresuid 165
|
||||||
|
#define SYS_vm86 166
|
||||||
|
#define SYS_query_module 167
|
||||||
|
#define SYS_poll 168
|
||||||
|
#define SYS_nfsservctl 169
|
||||||
|
#define SYS_setresgid 170
|
||||||
|
#define SYS_getresgid 171
|
||||||
|
#define SYS_prctl 172
|
||||||
|
#define SYS_rt_sigreturn 173
|
||||||
|
#define SYS_rt_sigaction 174
|
||||||
|
#define SYS_rt_sigprocmask 175
|
||||||
|
#define SYS_rt_sigpending 176
|
||||||
|
#define SYS_rt_sigtimedwait 177
|
||||||
|
#define SYS_rt_sigqueueinfo 178
|
||||||
|
#define SYS_rt_sigsuspend 179
|
||||||
|
#define SYS_pread64 180
|
||||||
|
#define SYS_pwrite64 181
|
||||||
|
#define SYS_chown 182
|
||||||
|
#define SYS_getcwd 183
|
||||||
|
#define SYS_capget 184
|
||||||
|
#define SYS_capset 185
|
||||||
|
#define SYS_sigaltstack 186
|
||||||
|
#define SYS_sendfile 187
|
||||||
|
#define SYS_getpmsg 188
|
||||||
|
#define SYS_putpmsg 189
|
||||||
|
#define SYS_vfork 190
|
||||||
|
#define SYS_ugetrlimit 191
|
||||||
|
#define SYS_mmap2 192
|
||||||
|
#define SYS_truncate64 193
|
||||||
|
#define SYS_ftruncate64 194
|
||||||
|
#define SYS_stat64 195
|
||||||
|
#define SYS_lstat64 196
|
||||||
|
#define SYS_fstat64 197
|
||||||
|
#define SYS_lchown32 198
|
||||||
|
#define SYS_getuid32 199
|
||||||
|
#define SYS_getgid32 200
|
||||||
|
#define SYS_geteuid32 201
|
||||||
|
#define SYS_getegid32 202
|
||||||
|
#define SYS_setreuid32 203
|
||||||
|
#define SYS_setregid32 204
|
||||||
|
#define SYS_getgroups32 205
|
||||||
|
#define SYS_setgroups32 206
|
||||||
|
#define SYS_fchown32 207
|
||||||
|
#define SYS_setresuid32 208
|
||||||
|
#define SYS_getresuid32 209
|
||||||
|
#define SYS_setresgid32 210
|
||||||
|
#define SYS_getresgid32 211
|
||||||
|
#define SYS_chown32 212
|
||||||
|
#define SYS_setuid32 213
|
||||||
|
#define SYS_setgid32 214
|
||||||
|
#define SYS_setfsuid32 215
|
||||||
|
#define SYS_setfsgid32 216
|
||||||
|
#define SYS_pivot_root 217
|
||||||
|
#define SYS_mincore 218
|
||||||
|
#define SYS_madvise 219
|
||||||
|
#define SYS_madvise1 219
|
||||||
|
#define SYS_getdents64 220
|
||||||
|
#define SYS_fcntl64 221
|
||||||
|
/* 223 is unused */
|
||||||
|
#define SYS_gettid 224
|
||||||
|
#define SYS_readahead 225
|
||||||
|
#define SYS_setxattr 226
|
||||||
|
#define SYS_lsetxattr 227
|
||||||
|
#define SYS_fsetxattr 228
|
||||||
|
#define SYS_getxattr 229
|
||||||
|
#define SYS_lgetxattr 230
|
||||||
|
#define SYS_fgetxattr 231
|
||||||
|
#define SYS_listxattr 232
|
||||||
|
#define SYS_llistxattr 233
|
||||||
|
#define SYS_flistxattr 234
|
||||||
|
#define SYS_removexattr 235
|
||||||
|
#define SYS_lremovexattr 236
|
||||||
|
#define SYS_fremovexattr 237
|
||||||
|
#define SYS_tkill 238
|
||||||
|
#define SYS_sendfile64 239
|
||||||
|
#define SYS_futex 240
|
||||||
|
#define SYS_sched_setaffinity 241
|
||||||
|
#define SYS_sched_getaffinity 242
|
||||||
|
#define SYS_set_thread_area 243
|
||||||
|
#define SYS_get_thread_area 244
|
||||||
|
#define SYS_io_setup 245
|
||||||
|
#define SYS_io_destroy 246
|
||||||
|
#define SYS_io_getevents 247
|
||||||
|
#define SYS_io_submit 248
|
||||||
|
#define SYS_io_cancel 249
|
||||||
|
#define SYS_fadvise64 250
|
||||||
|
/* 251 is available for reuse (was briefly sys_set_zone_reclaim) */
|
||||||
|
#define SYS_exit_group 252
|
||||||
|
#define SYS_lookup_dcookie 253
|
||||||
|
#define SYS_epoll_create 254
|
||||||
|
#define SYS_epoll_ctl 255
|
||||||
|
#define SYS_epoll_wait 256
|
||||||
|
#define SYS_remap_file_pages 257
|
||||||
|
#define SYS_set_tid_address 258
|
||||||
|
#define SYS_timer_create 259
|
||||||
|
#define SYS_timer_settime (SYS_timer_create+1)
|
||||||
|
#define SYS_timer_gettime (SYS_timer_create+2)
|
||||||
|
#define SYS_timer_getoverrun (SYS_timer_create+3)
|
||||||
|
#define SYS_timer_delete (SYS_timer_create+4)
|
||||||
|
#define SYS_clock_settime (SYS_timer_create+5)
|
||||||
|
#define SYS_clock_gettime (SYS_timer_create+6)
|
||||||
|
#define SYS_clock_getres (SYS_timer_create+7)
|
||||||
|
#define SYS_clock_nanosleep (SYS_timer_create+8)
|
||||||
|
#define SYS_statfs64 268
|
||||||
|
#define SYS_fstatfs64 269
|
||||||
|
#define SYS_tgkill 270
|
||||||
|
#define SYS_utimes 271
|
||||||
|
#define SYS_fadvise64_64 272
|
||||||
|
#define SYS_vserver 273
|
||||||
|
#define SYS_mbind 274
|
||||||
|
#define SYS_get_mempolicy 275
|
||||||
|
#define SYS_set_mempolicy 276
|
||||||
|
#define SYS_mq_open 277
|
||||||
|
#define SYS_mq_unlink (SYS_mq_open+1)
|
||||||
|
#define SYS_mq_timedsend (SYS_mq_open+2)
|
||||||
|
#define SYS_mq_timedreceive (SYS_mq_open+3)
|
||||||
|
#define SYS_mq_notify (SYS_mq_open+4)
|
||||||
|
#define SYS_mq_getsetattr (SYS_mq_open+5)
|
||||||
|
#define SYS_kexec_load 283
|
||||||
|
#define SYS_waitid 284
|
||||||
|
/* #define SYS_sys_setaltroot 285 */
|
||||||
|
#define SYS_add_key 286
|
||||||
|
#define SYS_request_key 287
|
||||||
|
#define SYS_keyctl 288
|
||||||
|
#define SYS_ioprio_set 289
|
||||||
|
#define SYS_ioprio_get 290
|
||||||
|
#define SYS_inotify_init 291
|
||||||
|
#define SYS_inotify_add_watch 292
|
||||||
|
#define SYS_inotify_rm_watch 293
|
||||||
|
#define SYS_migrate_pages 294
|
||||||
|
#define SYS_openat 295
|
||||||
|
#define SYS_mkdirat 296
|
||||||
|
#define SYS_mknodat 297
|
||||||
|
#define SYS_fchownat 298
|
||||||
|
#define SYS_futimesat 299
|
||||||
|
#define SYS_fstatat64 300
|
||||||
|
#define SYS_unlinkat 301
|
||||||
|
#define SYS_renameat 302
|
||||||
|
#define SYS_linkat 303
|
||||||
|
#define SYS_symlinkat 304
|
||||||
|
#define SYS_readlinkat 305
|
||||||
|
#define SYS_fchmodat 306
|
||||||
|
#define SYS_faccessat 307
|
||||||
|
#define SYS_pselect6 308
|
||||||
|
#define SYS_ppoll 309
|
||||||
|
#define SYS_unshare 310
|
||||||
|
#define SYS_set_robust_list 311
|
||||||
|
#define SYS_get_robust_list 312
|
||||||
|
#define SYS_splice 313
|
||||||
|
#define SYS_sync_file_range 314
|
||||||
|
#define SYS_tee 315
|
||||||
|
#define SYS_vmsplice 316
|
||||||
|
#define SYS_move_pages 317
|
||||||
|
#define SYS_getcpu 318
|
||||||
|
#define SYS_epoll_pwait 319
|
||||||
|
#define SYS_utimensat 320
|
||||||
|
#define SYS_signalfd 321
|
||||||
|
#define SYS_timerfd_create 322
|
||||||
|
#define SYS_eventfd 323
|
||||||
|
#define SYS_fallocate 324
|
||||||
|
#define SYS_timerfd_settime 325
|
||||||
|
#define SYS_timerfd_gettime 326
|
||||||
|
#define SYS_signalfd4 327
|
||||||
|
#define SYS_eventfd2 328
|
||||||
|
#define SYS_epoll_create1 329
|
||||||
|
#define SYS_dup3 330
|
||||||
|
#define SYS_pipe2 331
|
||||||
|
#define SYS_inotify_init1 332
|
||||||
|
#define SYS_preadv 333
|
||||||
|
#define SYS_pwritev 334
|
||||||
|
|
||||||
|
/* fixup legacy 16-bit junk */
|
||||||
|
#undef SYS_lchown
|
||||||
|
#undef SYS_getuid
|
||||||
|
#undef SYS_getgid
|
||||||
|
#undef SYS_geteuid
|
||||||
|
#undef SYS_getegid
|
||||||
|
#undef SYS_setreuid
|
||||||
|
#undef SYS_setregid
|
||||||
|
#undef SYS_getgroups
|
||||||
|
#undef SYS_setgroups
|
||||||
|
#undef SYS_fchown
|
||||||
|
#undef SYS_setresuid
|
||||||
|
#undef SYS_getresuid
|
||||||
|
#undef SYS_setresgid
|
||||||
|
#undef SYS_getresgid
|
||||||
|
#undef SYS_chown
|
||||||
|
#undef SYS_setuid
|
||||||
|
#undef SYS_setgid
|
||||||
|
#undef SYS_setfsuid
|
||||||
|
#undef SYS_setfsgid
|
||||||
|
#define SYS_lchown SYS_lchown32
|
||||||
|
#define SYS_getuid SYS_getuid32
|
||||||
|
#define SYS_getgid SYS_getgid32
|
||||||
|
#define SYS_geteuid SYS_geteuid32
|
||||||
|
#define SYS_getegid SYS_getegid32
|
||||||
|
#define SYS_setreuid SYS_setreuid32
|
||||||
|
#define SYS_setregid SYS_setregid32
|
||||||
|
#define SYS_getgroups SYS_getgroups32
|
||||||
|
#define SYS_setgroups SYS_setgroups32
|
||||||
|
#define SYS_fchown SYS_fchown32
|
||||||
|
#define SYS_setresuid SYS_setresuid32
|
||||||
|
#define SYS_getresuid SYS_getresuid32
|
||||||
|
#define SYS_setresgid SYS_setresgid32
|
||||||
|
#define SYS_getresgid SYS_getresgid32
|
||||||
|
#define SYS_chown SYS_chown32
|
||||||
|
#define SYS_setuid SYS_setuid32
|
||||||
|
#define SYS_setgid SYS_setgid32
|
||||||
|
#define SYS_setfsuid SYS_setfsuid32
|
||||||
|
#define SYS_setfsgid SYS_setfsgid32
|
||||||
|
|
||||||
|
|
||||||
|
/* fixup legacy 32-bit-vs-lfs64 junk */
|
||||||
|
#undef SYS_fcntl
|
||||||
|
#undef SYS_getdents
|
||||||
|
#undef SYS_ftruncate
|
||||||
|
#undef SYS_truncate
|
||||||
|
#undef SYS_stat
|
||||||
|
#undef SYS_fstat
|
||||||
|
#undef SYS_lstat
|
||||||
|
#undef SYS_statfs
|
||||||
|
#undef SYS_fstatfs
|
||||||
|
#define SYS_fcntl SYS_fcntl64
|
||||||
|
#define SYS_getdents SYS_getdents64
|
||||||
|
#define SYS_ftruncate SYS_ftruncate64
|
||||||
|
#define SYS_truncate SYS_truncate64
|
||||||
|
#define SYS_stat SYS_stat64
|
||||||
|
#define SYS_fstat SYS_fstat64
|
||||||
|
#define SYS_lstat SYS_lstat64
|
||||||
|
#define SYS_statfs SYS_statfs64
|
||||||
|
#define SYS_fstatfs SYS_fstatfs64
|
||||||
|
#define SYS_fstatat SYS_fstatat64
|
||||||
|
#define SYS_pread SYS_pread64
|
||||||
|
#define SYS_pwrite SYS_pwrite64
|
||||||
|
|
||||||
|
#define SYS_fadvise SYS_fadvise64_64
|
||||||
|
|
||||||
|
#undef SYS_getrlimit
|
||||||
|
#define SYS_getrlimit SYS_ugetrlimit
|
||||||
|
|
||||||
|
#undef SYS_select
|
||||||
|
#define SYS_select SYS__newselect
|
|
@ -1,445 +0,0 @@
|
||||||
#define __NR_restart_syscall 0
|
|
||||||
#define __NR_exit 1
|
|
||||||
#define __NR_fork 2
|
|
||||||
#define __NR_read 3
|
|
||||||
#define __NR_write 4
|
|
||||||
#define __NR_open 5
|
|
||||||
#define __NR_close 6
|
|
||||||
#define __NR_waitpid 7
|
|
||||||
#define __NR_creat 8
|
|
||||||
#define __NR_link 9
|
|
||||||
#define __NR_unlink 10
|
|
||||||
#define __NR_execve 11
|
|
||||||
#define __NR_chdir 12
|
|
||||||
#define __NR_time 13
|
|
||||||
#define __NR_mknod 14
|
|
||||||
#define __NR_chmod 15
|
|
||||||
#define __NR_lchown 16
|
|
||||||
#define __NR_break 17
|
|
||||||
#define __NR_oldstat 18
|
|
||||||
#define __NR_lseek 19
|
|
||||||
#define __NR_getpid 20
|
|
||||||
#define __NR_mount 21
|
|
||||||
#define __NR_umount 22
|
|
||||||
#define __NR_setuid 23
|
|
||||||
#define __NR_getuid 24
|
|
||||||
#define __NR_stime 25
|
|
||||||
#define __NR_ptrace 26
|
|
||||||
#define __NR_alarm 27
|
|
||||||
#define __NR_oldfstat 28
|
|
||||||
#define __NR_pause 29
|
|
||||||
#define __NR_utime 30
|
|
||||||
#define __NR_stty 31
|
|
||||||
#define __NR_gtty 32
|
|
||||||
#define __NR_access 33
|
|
||||||
#define __NR_nice 34
|
|
||||||
#define __NR_ftime 35
|
|
||||||
#define __NR_sync 36
|
|
||||||
#define __NR_kill 37
|
|
||||||
#define __NR_rename 38
|
|
||||||
#define __NR_mkdir 39
|
|
||||||
#define __NR_rmdir 40
|
|
||||||
#define __NR_dup 41
|
|
||||||
#define __NR_pipe 42
|
|
||||||
#define __NR_times 43
|
|
||||||
#define __NR_prof 44
|
|
||||||
#define __NR_brk 45
|
|
||||||
#define __NR_setgid 46
|
|
||||||
#define __NR_getgid 47
|
|
||||||
#define __NR_signal 48
|
|
||||||
#define __NR_geteuid 49
|
|
||||||
#define __NR_getegid 50
|
|
||||||
#define __NR_acct 51
|
|
||||||
#define __NR_umount2 52
|
|
||||||
#define __NR_lock 53
|
|
||||||
#define __NR_ioctl 54
|
|
||||||
#define __NR_fcntl 55
|
|
||||||
#define __NR_mpx 56
|
|
||||||
#define __NR_setpgid 57
|
|
||||||
#define __NR_ulimit 58
|
|
||||||
#define __NR_oldolduname 59
|
|
||||||
#define __NR_umask 60
|
|
||||||
#define __NR_chroot 61
|
|
||||||
#define __NR_ustat 62
|
|
||||||
#define __NR_dup2 63
|
|
||||||
#define __NR_getppid 64
|
|
||||||
#define __NR_getpgrp 65
|
|
||||||
#define __NR_setsid 66
|
|
||||||
#define __NR_sigaction 67
|
|
||||||
#define __NR_sgetmask 68
|
|
||||||
#define __NR_ssetmask 69
|
|
||||||
#define __NR_setreuid 70
|
|
||||||
#define __NR_setregid 71
|
|
||||||
#define __NR_sigsuspend 72
|
|
||||||
#define __NR_sigpending 73
|
|
||||||
#define __NR_sethostname 74
|
|
||||||
#define __NR_setrlimit 75
|
|
||||||
#define __NR_getrlimit 76 /* Back compatible 2Gig limited rlimit */
|
|
||||||
#define __NR_getrusage 77
|
|
||||||
#define __NR_gettimeofday_time32 78
|
|
||||||
#define __NR_settimeofday_time32 79
|
|
||||||
#define __NR_getgroups 80
|
|
||||||
#define __NR_setgroups 81
|
|
||||||
#define __NR_select 82
|
|
||||||
#define __NR_symlink 83
|
|
||||||
#define __NR_oldlstat 84
|
|
||||||
#define __NR_readlink 85
|
|
||||||
#define __NR_uselib 86
|
|
||||||
#define __NR_swapon 87
|
|
||||||
#define __NR_reboot 88
|
|
||||||
#define __NR_readdir 89
|
|
||||||
#define __NR_mmap 90
|
|
||||||
#define __NR_munmap 91
|
|
||||||
#define __NR_truncate 92
|
|
||||||
#define __NR_ftruncate 93
|
|
||||||
#define __NR_fchmod 94
|
|
||||||
#define __NR_fchown 95
|
|
||||||
#define __NR_getpriority 96
|
|
||||||
#define __NR_setpriority 97
|
|
||||||
#define __NR_profil 98
|
|
||||||
#define __NR_statfs 99
|
|
||||||
#define __NR_fstatfs 100
|
|
||||||
#define __NR_ioperm 101
|
|
||||||
#define __NR_socketcall 102
|
|
||||||
#define __NR_syslog 103
|
|
||||||
#define __NR_setitimer 104
|
|
||||||
#define __NR_getitimer 105
|
|
||||||
#define __NR_stat 106
|
|
||||||
#define __NR_lstat 107
|
|
||||||
#define __NR_fstat 108
|
|
||||||
#define __NR_olduname 109
|
|
||||||
#define __NR_iopl 110
|
|
||||||
#define __NR_vhangup 111
|
|
||||||
#define __NR_idle 112
|
|
||||||
#define __NR_vm86old 113
|
|
||||||
#define __NR_wait4 114
|
|
||||||
#define __NR_swapoff 115
|
|
||||||
#define __NR_sysinfo 116
|
|
||||||
#define __NR_ipc 117
|
|
||||||
#define __NR_fsync 118
|
|
||||||
#define __NR_sigreturn 119
|
|
||||||
#define __NR_clone 120
|
|
||||||
#define __NR_setdomainname 121
|
|
||||||
#define __NR_uname 122
|
|
||||||
#define __NR_modify_ldt 123
|
|
||||||
#define __NR_adjtimex 124
|
|
||||||
#define __NR_mprotect 125
|
|
||||||
#define __NR_sigprocmask 126
|
|
||||||
#define __NR_create_module 127
|
|
||||||
#define __NR_init_module 128
|
|
||||||
#define __NR_delete_module 129
|
|
||||||
#define __NR_get_kernel_syms 130
|
|
||||||
#define __NR_quotactl 131
|
|
||||||
#define __NR_getpgid 132
|
|
||||||
#define __NR_fchdir 133
|
|
||||||
#define __NR_bdflush 134
|
|
||||||
#define __NR_sysfs 135
|
|
||||||
#define __NR_personality 136
|
|
||||||
#define __NR_afs_syscall 137
|
|
||||||
#define __NR_setfsuid 138
|
|
||||||
#define __NR_setfsgid 139
|
|
||||||
#define __NR__llseek 140
|
|
||||||
#define __NR_getdents 141
|
|
||||||
#define __NR__newselect 142
|
|
||||||
#define __NR_flock 143
|
|
||||||
#define __NR_msync 144
|
|
||||||
#define __NR_readv 145
|
|
||||||
#define __NR_writev 146
|
|
||||||
#define __NR_getsid 147
|
|
||||||
#define __NR_fdatasync 148
|
|
||||||
#define __NR__sysctl 149
|
|
||||||
#define __NR_mlock 150
|
|
||||||
#define __NR_munlock 151
|
|
||||||
#define __NR_mlockall 152
|
|
||||||
#define __NR_munlockall 153
|
|
||||||
#define __NR_sched_setparam 154
|
|
||||||
#define __NR_sched_getparam 155
|
|
||||||
#define __NR_sched_setscheduler 156
|
|
||||||
#define __NR_sched_getscheduler 157
|
|
||||||
#define __NR_sched_yield 158
|
|
||||||
#define __NR_sched_get_priority_max 159
|
|
||||||
#define __NR_sched_get_priority_min 160
|
|
||||||
#define __NR_sched_rr_get_interval 161
|
|
||||||
#define __NR_nanosleep 162
|
|
||||||
#define __NR_mremap 163
|
|
||||||
#define __NR_setresuid 164
|
|
||||||
#define __NR_getresuid 165
|
|
||||||
#define __NR_vm86 166
|
|
||||||
#define __NR_query_module 167
|
|
||||||
#define __NR_poll 168
|
|
||||||
#define __NR_nfsservctl 169
|
|
||||||
#define __NR_setresgid 170
|
|
||||||
#define __NR_getresgid 171
|
|
||||||
#define __NR_prctl 172
|
|
||||||
#define __NR_rt_sigreturn 173
|
|
||||||
#define __NR_rt_sigaction 174
|
|
||||||
#define __NR_rt_sigprocmask 175
|
|
||||||
#define __NR_rt_sigpending 176
|
|
||||||
#define __NR_rt_sigtimedwait 177
|
|
||||||
#define __NR_rt_sigqueueinfo 178
|
|
||||||
#define __NR_rt_sigsuspend 179
|
|
||||||
#define __NR_pread64 180
|
|
||||||
#define __NR_pwrite64 181
|
|
||||||
#define __NR_chown 182
|
|
||||||
#define __NR_getcwd 183
|
|
||||||
#define __NR_capget 184
|
|
||||||
#define __NR_capset 185
|
|
||||||
#define __NR_sigaltstack 186
|
|
||||||
#define __NR_sendfile 187
|
|
||||||
#define __NR_getpmsg 188
|
|
||||||
#define __NR_putpmsg 189
|
|
||||||
#define __NR_vfork 190
|
|
||||||
#define __NR_ugetrlimit 191
|
|
||||||
#define __NR_mmap2 192
|
|
||||||
#define __NR_truncate64 193
|
|
||||||
#define __NR_ftruncate64 194
|
|
||||||
#define __NR_stat64 195
|
|
||||||
#define __NR_lstat64 196
|
|
||||||
#define __NR_fstat64 197
|
|
||||||
#define __NR_lchown32 198
|
|
||||||
#define __NR_getuid32 199
|
|
||||||
#define __NR_getgid32 200
|
|
||||||
#define __NR_geteuid32 201
|
|
||||||
#define __NR_getegid32 202
|
|
||||||
#define __NR_setreuid32 203
|
|
||||||
#define __NR_setregid32 204
|
|
||||||
#define __NR_getgroups32 205
|
|
||||||
#define __NR_setgroups32 206
|
|
||||||
#define __NR_fchown32 207
|
|
||||||
#define __NR_setresuid32 208
|
|
||||||
#define __NR_getresuid32 209
|
|
||||||
#define __NR_setresgid32 210
|
|
||||||
#define __NR_getresgid32 211
|
|
||||||
#define __NR_chown32 212
|
|
||||||
#define __NR_setuid32 213
|
|
||||||
#define __NR_setgid32 214
|
|
||||||
#define __NR_setfsuid32 215
|
|
||||||
#define __NR_setfsgid32 216
|
|
||||||
#define __NR_pivot_root 217
|
|
||||||
#define __NR_mincore 218
|
|
||||||
#define __NR_madvise 219
|
|
||||||
#define __NR_getdents64 220
|
|
||||||
#define __NR_fcntl64 221
|
|
||||||
/* 223 is unused */
|
|
||||||
#define __NR_gettid 224
|
|
||||||
#define __NR_readahead 225
|
|
||||||
#define __NR_setxattr 226
|
|
||||||
#define __NR_lsetxattr 227
|
|
||||||
#define __NR_fsetxattr 228
|
|
||||||
#define __NR_getxattr 229
|
|
||||||
#define __NR_lgetxattr 230
|
|
||||||
#define __NR_fgetxattr 231
|
|
||||||
#define __NR_listxattr 232
|
|
||||||
#define __NR_llistxattr 233
|
|
||||||
#define __NR_flistxattr 234
|
|
||||||
#define __NR_removexattr 235
|
|
||||||
#define __NR_lremovexattr 236
|
|
||||||
#define __NR_fremovexattr 237
|
|
||||||
#define __NR_tkill 238
|
|
||||||
#define __NR_sendfile64 239
|
|
||||||
#define __NR_futex 240
|
|
||||||
#define __NR_sched_setaffinity 241
|
|
||||||
#define __NR_sched_getaffinity 242
|
|
||||||
#define __NR_set_thread_area 243
|
|
||||||
#define __NR_get_thread_area 244
|
|
||||||
#define __NR_io_setup 245
|
|
||||||
#define __NR_io_destroy 246
|
|
||||||
#define __NR_io_getevents 247
|
|
||||||
#define __NR_io_submit 248
|
|
||||||
#define __NR_io_cancel 249
|
|
||||||
#define __NR_fadvise64 250
|
|
||||||
/* 251 is available for reuse (was briefly sys_set_zone_reclaim) */
|
|
||||||
#define __NR_exit_group 252
|
|
||||||
#define __NR_lookup_dcookie 253
|
|
||||||
#define __NR_epoll_create 254
|
|
||||||
#define __NR_epoll_ctl 255
|
|
||||||
#define __NR_epoll_wait 256
|
|
||||||
#define __NR_remap_file_pages 257
|
|
||||||
#define __NR_set_tid_address 258
|
|
||||||
#define __NR_timer_create 259
|
|
||||||
#define __NR_timer_settime32 (__NR_timer_create+1)
|
|
||||||
#define __NR_timer_gettime32 (__NR_timer_create+2)
|
|
||||||
#define __NR_timer_getoverrun (__NR_timer_create+3)
|
|
||||||
#define __NR_timer_delete (__NR_timer_create+4)
|
|
||||||
#define __NR_clock_settime32 (__NR_timer_create+5)
|
|
||||||
#define __NR_clock_gettime32 (__NR_timer_create+6)
|
|
||||||
#define __NR_clock_getres_time32 (__NR_timer_create+7)
|
|
||||||
#define __NR_clock_nanosleep_time32 (__NR_timer_create+8)
|
|
||||||
#define __NR_statfs64 268
|
|
||||||
#define __NR_fstatfs64 269
|
|
||||||
#define __NR_tgkill 270
|
|
||||||
#define __NR_utimes 271
|
|
||||||
#define __NR_fadvise64_64 272
|
|
||||||
#define __NR_vserver 273
|
|
||||||
#define __NR_mbind 274
|
|
||||||
#define __NR_get_mempolicy 275
|
|
||||||
#define __NR_set_mempolicy 276
|
|
||||||
#define __NR_mq_open 277
|
|
||||||
#define __NR_mq_unlink (__NR_mq_open+1)
|
|
||||||
#define __NR_mq_timedsend (__NR_mq_open+2)
|
|
||||||
#define __NR_mq_timedreceive (__NR_mq_open+3)
|
|
||||||
#define __NR_mq_notify (__NR_mq_open+4)
|
|
||||||
#define __NR_mq_getsetattr (__NR_mq_open+5)
|
|
||||||
#define __NR_kexec_load 283
|
|
||||||
#define __NR_waitid 284
|
|
||||||
/* #define __NR_sys_setaltroot 285 */
|
|
||||||
#define __NR_add_key 286
|
|
||||||
#define __NR_request_key 287
|
|
||||||
#define __NR_keyctl 288
|
|
||||||
#define __NR_ioprio_set 289
|
|
||||||
#define __NR_ioprio_get 290
|
|
||||||
#define __NR_inotify_init 291
|
|
||||||
#define __NR_inotify_add_watch 292
|
|
||||||
#define __NR_inotify_rm_watch 293
|
|
||||||
#define __NR_migrate_pages 294
|
|
||||||
#define __NR_openat 295
|
|
||||||
#define __NR_mkdirat 296
|
|
||||||
#define __NR_mknodat 297
|
|
||||||
#define __NR_fchownat 298
|
|
||||||
#define __NR_futimesat 299
|
|
||||||
#define __NR_fstatat64 300
|
|
||||||
#define __NR_unlinkat 301
|
|
||||||
#define __NR_renameat 302
|
|
||||||
#define __NR_linkat 303
|
|
||||||
#define __NR_symlinkat 304
|
|
||||||
#define __NR_readlinkat 305
|
|
||||||
#define __NR_fchmodat 306
|
|
||||||
#define __NR_faccessat 307
|
|
||||||
#define __NR_pselect6 308
|
|
||||||
#define __NR_ppoll 309
|
|
||||||
#define __NR_unshare 310
|
|
||||||
#define __NR_set_robust_list 311
|
|
||||||
#define __NR_get_robust_list 312
|
|
||||||
#define __NR_splice 313
|
|
||||||
#define __NR_sync_file_range 314
|
|
||||||
#define __NR_tee 315
|
|
||||||
#define __NR_vmsplice 316
|
|
||||||
#define __NR_move_pages 317
|
|
||||||
#define __NR_getcpu 318
|
|
||||||
#define __NR_epoll_pwait 319
|
|
||||||
#define __NR_utimensat 320
|
|
||||||
#define __NR_signalfd 321
|
|
||||||
#define __NR_timerfd_create 322
|
|
||||||
#define __NR_eventfd 323
|
|
||||||
#define __NR_fallocate 324
|
|
||||||
#define __NR_timerfd_settime32 325
|
|
||||||
#define __NR_timerfd_gettime32 326
|
|
||||||
#define __NR_signalfd4 327
|
|
||||||
#define __NR_eventfd2 328
|
|
||||||
#define __NR_epoll_create1 329
|
|
||||||
#define __NR_dup3 330
|
|
||||||
#define __NR_pipe2 331
|
|
||||||
#define __NR_inotify_init1 332
|
|
||||||
#define __NR_preadv 333
|
|
||||||
#define __NR_pwritev 334
|
|
||||||
#define __NR_rt_tgsigqueueinfo 335
|
|
||||||
#define __NR_perf_event_open 336
|
|
||||||
#define __NR_recvmmsg 337
|
|
||||||
#define __NR_fanotify_init 338
|
|
||||||
#define __NR_fanotify_mark 339
|
|
||||||
#define __NR_prlimit64 340
|
|
||||||
#define __NR_name_to_handle_at 341
|
|
||||||
#define __NR_open_by_handle_at 342
|
|
||||||
#define __NR_clock_adjtime 343
|
|
||||||
#define __NR_syncfs 344
|
|
||||||
#define __NR_sendmmsg 345
|
|
||||||
#define __NR_setns 346
|
|
||||||
#define __NR_process_vm_readv 347
|
|
||||||
#define __NR_process_vm_writev 348
|
|
||||||
#define __NR_kcmp 349
|
|
||||||
#define __NR_finit_module 350
|
|
||||||
#define __NR_sched_setattr 351
|
|
||||||
#define __NR_sched_getattr 352
|
|
||||||
#define __NR_renameat2 353
|
|
||||||
#define __NR_seccomp 354
|
|
||||||
#define __NR_getrandom 355
|
|
||||||
#define __NR_memfd_create 356
|
|
||||||
#define __NR_bpf 357
|
|
||||||
#define __NR_execveat 358
|
|
||||||
#define __NR_socket 359
|
|
||||||
#define __NR_socketpair 360
|
|
||||||
#define __NR_bind 361
|
|
||||||
#define __NR_connect 362
|
|
||||||
#define __NR_listen 363
|
|
||||||
#define __NR_accept4 364
|
|
||||||
#define __NR_getsockopt 365
|
|
||||||
#define __NR_setsockopt 366
|
|
||||||
#define __NR_getsockname 367
|
|
||||||
#define __NR_getpeername 368
|
|
||||||
#define __NR_sendto 369
|
|
||||||
#define __NR_sendmsg 370
|
|
||||||
#define __NR_recvfrom 371
|
|
||||||
#define __NR_recvmsg 372
|
|
||||||
#define __NR_shutdown 373
|
|
||||||
#define __NR_userfaultfd 374
|
|
||||||
#define __NR_membarrier 375
|
|
||||||
#define __NR_mlock2 376
|
|
||||||
#define __NR_copy_file_range 377
|
|
||||||
#define __NR_preadv2 378
|
|
||||||
#define __NR_pwritev2 379
|
|
||||||
#define __NR_pkey_mprotect 380
|
|
||||||
#define __NR_pkey_alloc 381
|
|
||||||
#define __NR_pkey_free 382
|
|
||||||
#define __NR_statx 383
|
|
||||||
#define __NR_arch_prctl 384
|
|
||||||
#define __NR_io_pgetevents 385
|
|
||||||
#define __NR_rseq 386
|
|
||||||
#define __NR_semget 393
|
|
||||||
#define __NR_semctl 394
|
|
||||||
#define __NR_shmget 395
|
|
||||||
#define __NR_shmctl 396
|
|
||||||
#define __NR_shmat 397
|
|
||||||
#define __NR_shmdt 398
|
|
||||||
#define __NR_msgget 399
|
|
||||||
#define __NR_msgsnd 400
|
|
||||||
#define __NR_msgrcv 401
|
|
||||||
#define __NR_msgctl 402
|
|
||||||
#define __NR_clock_gettime64 403
|
|
||||||
#define __NR_clock_settime64 404
|
|
||||||
#define __NR_clock_adjtime64 405
|
|
||||||
#define __NR_clock_getres_time64 406
|
|
||||||
#define __NR_clock_nanosleep_time64 407
|
|
||||||
#define __NR_timer_gettime64 408
|
|
||||||
#define __NR_timer_settime64 409
|
|
||||||
#define __NR_timerfd_gettime64 410
|
|
||||||
#define __NR_timerfd_settime64 411
|
|
||||||
#define __NR_utimensat_time64 412
|
|
||||||
#define __NR_pselect6_time64 413
|
|
||||||
#define __NR_ppoll_time64 414
|
|
||||||
#define __NR_io_pgetevents_time64 416
|
|
||||||
#define __NR_recvmmsg_time64 417
|
|
||||||
#define __NR_mq_timedsend_time64 418
|
|
||||||
#define __NR_mq_timedreceive_time64 419
|
|
||||||
#define __NR_semtimedop_time64 420
|
|
||||||
#define __NR_rt_sigtimedwait_time64 421
|
|
||||||
#define __NR_futex_time64 422
|
|
||||||
#define __NR_sched_rr_get_interval_time64 423
|
|
||||||
#define __NR_pidfd_send_signal 424
|
|
||||||
#define __NR_io_uring_setup 425
|
|
||||||
#define __NR_io_uring_enter 426
|
|
||||||
#define __NR_io_uring_register 427
|
|
||||||
#define __NR_open_tree 428
|
|
||||||
#define __NR_move_mount 429
|
|
||||||
#define __NR_fsopen 430
|
|
||||||
#define __NR_fsconfig 431
|
|
||||||
#define __NR_fsmount 432
|
|
||||||
#define __NR_fspick 433
|
|
||||||
#define __NR_pidfd_open 434
|
|
||||||
#define __NR_clone3 435
|
|
||||||
#define __NR_close_range 436
|
|
||||||
#define __NR_openat2 437
|
|
||||||
#define __NR_pidfd_getfd 438
|
|
||||||
#define __NR_faccessat2 439
|
|
||||||
#define __NR_process_madvise 440
|
|
||||||
#define __NR_epoll_pwait2 441
|
|
||||||
#define __NR_mount_setattr 442
|
|
||||||
#define __NR_landlock_create_ruleset 444
|
|
||||||
#define __NR_landlock_add_rule 445
|
|
||||||
#define __NR_landlock_restrict_self 446
|
|
||||||
#define __NR_memfd_secret 447
|
|
||||||
#define __NR_process_mrelease 448
|
|
||||||
#define __NR_futex_waitv 449
|
|
||||||
#define __NR_set_mempolicy_home_node 450
|
|
||||||
#define __NR_cachestat 451
|
|
||||||
#define __NR_fchmodat2 452
|
|
||||||
|
|
7
arch/i386/bits/sysmacros.h
Normal file
7
arch/i386/bits/sysmacros.h
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
#define major(x) (((x) >> 8) & 0xff)
|
||||||
|
#define minor(x) ((x) & 0xff)
|
||||||
|
#define makedev(x,y) (((x)<<8)|((y)&0xff))
|
||||||
|
|
||||||
|
//#define makedev(x,y) \
|
||||||
|
// ((x)*0x100000001ULL)&(0xfffffffffff0)
|
||||||
|
// ((y)*0x1001 & 0xffff0ff)
|
1
arch/i386/bits/tcp.h
Normal file
1
arch/i386/bits/tcp.h
Normal file
|
@ -0,0 +1 @@
|
||||||
|
#define TCP_NODELAY 1
|
|
@ -1,4 +1,5 @@
|
||||||
struct termios {
|
struct termios
|
||||||
|
{
|
||||||
tcflag_t c_iflag;
|
tcflag_t c_iflag;
|
||||||
tcflag_t c_oflag;
|
tcflag_t c_oflag;
|
||||||
tcflag_t c_cflag;
|
tcflag_t c_cflag;
|
||||||
|
@ -41,7 +42,6 @@ struct termios {
|
||||||
#define IXANY 0004000
|
#define IXANY 0004000
|
||||||
#define IXOFF 0010000
|
#define IXOFF 0010000
|
||||||
#define IMAXBEL 0020000
|
#define IMAXBEL 0020000
|
||||||
#define IUTF8 0040000
|
|
||||||
|
|
||||||
#define OPOST 0000001
|
#define OPOST 0000001
|
||||||
#define OLCUC 0000002
|
#define OLCUC 0000002
|
||||||
|
@ -51,7 +51,6 @@ struct termios {
|
||||||
#define ONLRET 0000040
|
#define ONLRET 0000040
|
||||||
#define OFILL 0000100
|
#define OFILL 0000100
|
||||||
#define OFDEL 0000200
|
#define OFDEL 0000200
|
||||||
#if defined(_GNU_SOURCE) || defined(_BSD_SOURCE) || defined(_XOPEN_SOURCE)
|
|
||||||
#define NLDLY 0000400
|
#define NLDLY 0000400
|
||||||
#define NL0 0000000
|
#define NL0 0000000
|
||||||
#define NL1 0000400
|
#define NL1 0000400
|
||||||
|
@ -71,12 +70,14 @@ struct termios {
|
||||||
#define FFDLY 0100000
|
#define FFDLY 0100000
|
||||||
#define FF0 0000000
|
#define FF0 0000000
|
||||||
#define FF1 0100000
|
#define FF1 0100000
|
||||||
#endif
|
|
||||||
|
|
||||||
#define VTDLY 0040000
|
#define VTDLY 0040000
|
||||||
#define VT0 0000000
|
#define VT0 0000000
|
||||||
#define VT1 0040000
|
#define VT1 0040000
|
||||||
|
|
||||||
|
/* ?? */
|
||||||
|
#define XTABS 0014000
|
||||||
|
|
||||||
#define B0 0000000
|
#define B0 0000000
|
||||||
#define B50 0000001
|
#define B50 0000001
|
||||||
#define B75 0000002
|
#define B75 0000002
|
||||||
|
@ -110,6 +111,8 @@ struct termios {
|
||||||
#define B3500000 0010016
|
#define B3500000 0010016
|
||||||
#define B4000000 0010017
|
#define B4000000 0010017
|
||||||
|
|
||||||
|
#define CBAUD 0010017
|
||||||
|
|
||||||
#define CSIZE 0000060
|
#define CSIZE 0000060
|
||||||
#define CS5 0000000
|
#define CS5 0000000
|
||||||
#define CS6 0000020
|
#define CS6 0000020
|
||||||
|
@ -122,6 +125,8 @@ struct termios {
|
||||||
#define HUPCL 0002000
|
#define HUPCL 0002000
|
||||||
#define CLOCAL 0004000
|
#define CLOCAL 0004000
|
||||||
|
|
||||||
|
#define CRTSCTS 020000000000
|
||||||
|
|
||||||
#define ISIG 0000001
|
#define ISIG 0000001
|
||||||
#define ICANON 0000002
|
#define ICANON 0000002
|
||||||
#define ECHO 0000010
|
#define ECHO 0000010
|
||||||
|
@ -132,6 +137,14 @@ struct termios {
|
||||||
#define TOSTOP 0000400
|
#define TOSTOP 0000400
|
||||||
#define IEXTEN 0100000
|
#define IEXTEN 0100000
|
||||||
|
|
||||||
|
/* Extensions? */
|
||||||
|
#define CBAUDEX 0010000
|
||||||
|
#define ECHOCTL 0001000
|
||||||
|
#define ECHOPRT 0002000
|
||||||
|
#define ECHOKE 0004000
|
||||||
|
#define FLUSHO 0010000
|
||||||
|
#define PENDIN 0040000
|
||||||
|
|
||||||
#define TCOOFF 0
|
#define TCOOFF 0
|
||||||
#define TCOON 1
|
#define TCOON 1
|
||||||
#define TCIOFF 2
|
#define TCIOFF 2
|
||||||
|
@ -144,23 +157,3 @@ struct termios {
|
||||||
#define TCSANOW 0
|
#define TCSANOW 0
|
||||||
#define TCSADRAIN 1
|
#define TCSADRAIN 1
|
||||||
#define TCSAFLUSH 2
|
#define TCSAFLUSH 2
|
||||||
|
|
||||||
#if defined(_GNU_SOURCE) || defined(_BSD_SOURCE)
|
|
||||||
#define EXTA 0000016
|
|
||||||
#define EXTB 0000017
|
|
||||||
#define CBAUD 0010017
|
|
||||||
#define CBAUDEX 0010000
|
|
||||||
#define CIBAUD 002003600000
|
|
||||||
#define CMSPAR 010000000000
|
|
||||||
#define CRTSCTS 020000000000
|
|
||||||
|
|
||||||
#define XCASE 0000004
|
|
||||||
#define ECHOCTL 0001000
|
|
||||||
#define ECHOPRT 0002000
|
|
||||||
#define ECHOKE 0004000
|
|
||||||
#define FLUSHO 0010000
|
|
||||||
#define PENDIN 0040000
|
|
||||||
#define EXTPROC 0200000
|
|
||||||
|
|
||||||
#define XTABS 0014000
|
|
||||||
#endif
|
|
|
@ -1,44 +1,77 @@
|
||||||
#undef __WORDSIZE
|
#undef __WORDSIZE
|
||||||
#define __WORDSIZE 32
|
#define __WORDSIZE 32
|
||||||
|
|
||||||
typedef struct user_fpregs_struct {
|
struct user_fpregs_struct
|
||||||
long cwd, swd, twd, fip, fcs, foo, fos, st_space[20];
|
{
|
||||||
} elf_fpregset_t;
|
long int cwd;
|
||||||
|
long int swd;
|
||||||
typedef struct user_fpxregs_struct {
|
long int twd;
|
||||||
unsigned short cwd, swd, twd, fop;
|
long int fip;
|
||||||
long fip, fcs, foo, fos, mxcsr, reserved;
|
long int fcs;
|
||||||
long st_space[32], xmm_space[32], padding[56];
|
long int foo;
|
||||||
} elf_fpxregset_t;
|
long int fos;
|
||||||
|
long int st_space[20];
|
||||||
struct user_regs_struct {
|
|
||||||
long ebx, ecx, edx, esi, edi, ebp, eax, xds, xes, xfs, xgs;
|
|
||||||
long orig_eax, eip, xcs, eflags, esp, xss;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
#define ELF_NGREG 17
|
struct user_fpxregs_struct
|
||||||
typedef unsigned long elf_greg_t, elf_gregset_t[ELF_NGREG];
|
{
|
||||||
|
unsigned short int cwd;
|
||||||
|
unsigned short int swd;
|
||||||
|
unsigned short int twd;
|
||||||
|
unsigned short int fop;
|
||||||
|
long int fip;
|
||||||
|
long int fcs;
|
||||||
|
long int foo;
|
||||||
|
long int fos;
|
||||||
|
long int mxcsr;
|
||||||
|
long int reserved;
|
||||||
|
long int st_space[32];
|
||||||
|
long int xmm_space[32];
|
||||||
|
long int padding[56];
|
||||||
|
};
|
||||||
|
|
||||||
struct user {
|
struct user_regs_struct
|
||||||
|
{
|
||||||
|
long int ebx;
|
||||||
|
long int ecx;
|
||||||
|
long int edx;
|
||||||
|
long int esi;
|
||||||
|
long int edi;
|
||||||
|
long int ebp;
|
||||||
|
long int eax;
|
||||||
|
long int xds;
|
||||||
|
long int xes;
|
||||||
|
long int xfs;
|
||||||
|
long int xgs;
|
||||||
|
long int orig_eax;
|
||||||
|
long int eip;
|
||||||
|
long int xcs;
|
||||||
|
long int eflags;
|
||||||
|
long int esp;
|
||||||
|
long int xss;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct user
|
||||||
|
{
|
||||||
struct user_regs_struct regs;
|
struct user_regs_struct regs;
|
||||||
int u_fpvalid;
|
int u_fpvalid;
|
||||||
struct user_fpregs_struct i387;
|
struct user_fpregs_struct i387;
|
||||||
unsigned long u_tsize;
|
unsigned long int u_tsize;
|
||||||
unsigned long u_dsize;
|
unsigned long int u_dsize;
|
||||||
unsigned long u_ssize;
|
unsigned long int u_ssize;
|
||||||
unsigned long start_code;
|
unsigned long start_code;
|
||||||
unsigned long start_stack;
|
unsigned long start_stack;
|
||||||
long signal;
|
long int signal;
|
||||||
int reserved;
|
int reserved;
|
||||||
struct user_regs_struct *u_ar0;
|
struct user_regs_struct *u_ar0;
|
||||||
struct user_fpregs_struct *u_fpstate;
|
struct user_fpregs_struct *u_fpstate;
|
||||||
unsigned long magic;
|
unsigned long int magic;
|
||||||
char u_comm[32];
|
char u_comm[32];
|
||||||
int u_debugreg[8];
|
int u_debugreg[8];
|
||||||
};
|
};
|
||||||
|
|
||||||
#define PAGE_MASK (~(PAGESIZE-1))
|
#define PAGE_MASK (~(PAGE_SIZE-1))
|
||||||
#define NBPG PAGESIZE
|
#define NBPG PAGE_SIZE
|
||||||
#define UPAGES 1
|
#define UPAGES 1
|
||||||
#define HOST_TEXT_START_ADDR (u.start_code)
|
#define HOST_TEXT_START_ADDR (u.start_code)
|
||||||
#define HOST_STACK_END_ADDR (u.start_stack + u.u_ssize * NBPG)
|
#define HOST_STACK_END_ADDR (u.start_stack + u.u_ssize * NBPG)
|
||||||
|
|
|
@ -1,16 +0,0 @@
|
||||||
__asm__(
|
|
||||||
".text\n"
|
|
||||||
".weak _DYNAMIC \n"
|
|
||||||
".hidden _DYNAMIC \n"
|
|
||||||
".global " START "\n"
|
|
||||||
START ":\n"
|
|
||||||
" xor %ebp,%ebp \n"
|
|
||||||
" mov %esp,%eax \n"
|
|
||||||
" and $-16,%esp \n"
|
|
||||||
" push %eax \n"
|
|
||||||
" push %eax \n"
|
|
||||||
" call 1f \n"
|
|
||||||
"1: addl $_DYNAMIC-1b,(%esp) \n"
|
|
||||||
" push %eax \n"
|
|
||||||
" call " START "_c \n"
|
|
||||||
);
|
|
|
@ -1,21 +0,0 @@
|
||||||
struct kstat {
|
|
||||||
dev_t st_dev;
|
|
||||||
int __st_dev_padding;
|
|
||||||
long __st_ino_truncated;
|
|
||||||
mode_t st_mode;
|
|
||||||
nlink_t st_nlink;
|
|
||||||
uid_t st_uid;
|
|
||||||
gid_t st_gid;
|
|
||||||
dev_t st_rdev;
|
|
||||||
int __st_rdev_padding;
|
|
||||||
off_t st_size;
|
|
||||||
blksize_t st_blksize;
|
|
||||||
blkcnt_t st_blocks;
|
|
||||||
long st_atime_sec;
|
|
||||||
long st_atime_nsec;
|
|
||||||
long st_mtime_sec;
|
|
||||||
long st_mtime_nsec;
|
|
||||||
long st_ctime_sec;
|
|
||||||
long st_ctime_nsec;
|
|
||||||
ino_t st_ino;
|
|
||||||
};
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue