History log of /seL4-test-master/projects/musllibc/arch/powerpc/bits/shm.h
Revision Date Author Comments
# befa5866 03-Jul-2016 Rich Felker <dalias@aerifal.cx>

make brace placement in public header struct definitions consistent

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.


# ad66ae93 11-Mar-2014 Rich Felker <dalias@aerifal.cx>

fix sysvipc structures on powerpc

these have been wrong for a long time and were never detected or
corrected. powerpc needs some gratuitous extra padding/reserved slots
in ipc_perm, big-endian ordering for the padding of time_t slots that
was intended by the kernel folks to allow a transition to 64-bit
time_t, and some minor gratuitous reordering of struct members.


# 0f169cbb 11-Jan-2014 rofl0r <retnyg@gmx.net>

sys/shm.h: move arch specific structs to bits/


# 1c8eb8ba 09-Nov-2012 rofl0r <retnyg@gmx.net>

PPC port cleaned up, static linking works well now.