summaryrefslogtreecommitdiff
path: root/arch_defs.h
Commit message (Collapse)AuthorAgeFilesLines
* Fix preprocessor indentationDmitry V. Levin2018-12-301-3/+3
| | | | | | | | | Indent the C preprocessor directives to reflect their nesting using the following script: $ cppi -l $(git grep -El '^[[:space:]]*#[[:space:]]*(if|ifdef|ifndef|elif|else|endif|define|pragma)[[:space:]]' |grep -v '\.sh$') |while read f; do cppi < "$f" > "$f".cppi; mv "$f".cppi "$f" done
* Add copyright headers to some files that lack themDmitry V. Levin2018-12-241-0/+7
| | | | | | We do our best to keep copyright headers up to date, yet git history provides better information on this subject and is more accurate than copyright headers.
* arch_defs.h: fix typo in commentDmitry V. Levin2018-03-281-1/+1
|
* Rename arch-specific arch_defs.h files to arch_defs_.hDmitry V. Levin2018-01-211-0/+8
Introduce a new arch_defs.h header that includes the corresponding arch-specific arch_defs_.h file followed by generic arch_defs_.h file. * linux/arch_defs.h: Rename to linux/arch_defs_.h. * linux/aarch64/arch_defs.h: Rename to linux/aarch64/arch_defs_.h. * linux/arm/arch_defs.h: Rename to linux/arm/arch_defs_.h. * linux/i386/arch_defs.h: Rename to linux/i386/arch_defs_.h. * linux/m68k/arch_defs.h: Rename to linux/m68k/arch_defs_.h. * linux/s390/arch_defs.h: Rename to linux/s390/arch_defs_.h. * linux/s390x/arch_defs.h: Rename to linux/s390x/arch_defs_.h. * linux/x32/arch_defs.h: Rename to linux/x32/arch_defs_.h. * linux/x86_64/arch_defs.h: Rename to linux/x86_64/arch_defs_.h. * arch_defs.h: New file. * Makefile.am (strace_SOURCES): Add it. (EXTRA_DIST): Rename linux/*/arch_defs.h to linux/*/arch_defs_.h.