about summary refs log tree commit diff
path: root/arch/x86_64/bits/user.h
Commit message (Collapse)AuthorAgeFilesLines
* sys/user.h: derive __WORDSIZE from __LONG_MAXRich Felker7 days1-3/+0
| | | | | | previously, only a few archs defined it here. this change makes the presence consistent across all archs, and reduces the amount of header duplication (and potential for future inconsistency) between archs.
* use PAGESIZE rather than PAGE_SIZE in user.h bitsRich Felker2018-03-101-2/+2
| | | | align with commit c9c2cd3e6955cb1d57b8be01d4b072bf44058762.
* make brace placement in public header typedef'd structs consistentRich Felker2016-07-031-2/+1
| | | | | | commit befa5866ee30d09c0c96e88af2eabff5911342ea performed this change for struct definitions that did not also involve typedef, but omitted the latter.
* make brace placement in public header struct definitions consistentRich Felker2016-07-031-4/+2
| | | | | | | | | | | | | | placing the opening brace on the same line as the struct keyword/tag is the style I prefer and seems to be the prevailing practice in more recent additions. these changes were generated by the command: find include/ arch/*/bits -name '*.h' \ -exec sed -i '/^struct [^;{]*$/{N;s/\n/ /;}' {} + and subsequently checked by hand to ensure that the regex did not pick up any false positives.
* fix typo in x86_64/x32 user_fpregs_structFelix Janda2015-02-011-1/+1
| | | | mxcs_mask should be mxcr_mask
* make sys/procfs.h mostly work on most archsRich Felker2012-11-251-2/+4
| | | | | | | | these structures are purely for use by trace/debug tools and tools working with core files. the definition of fpregset_t, which was previously here, has been removed because it was wrong; fpregset_t should be the type used in mcontext_t, not the type used in ptrace/core stuff.
* fix x86_64 user.h (previously was just a copy of i386)Rich Felker2011-09-221-48/+13
|
* wrong __WORDSIZE in x86_64 headerRich Felker2011-09-221-1/+1
|
* Port musl to x86-64. One giant commit!Nicholas J. Kain2011-02-151-0/+77