summaryrefslogtreecommitdiff
path: root/.topmsg
AgeCommit message (Collapse)Author
2020-08-06Use commit messaget/pie-sbrkSamuel Thibault
2013-02-12 * misc/tst-sbrk.c: New file.Thomas Schwinge
* misc/tst-sbrk-pie.c: Likewise. * misc/tst-sbrk-static.c: Likewise. * misc/Makefile (tests): Add tst-sbrk, tst-sbrk-pie, tst-sbrk-static. (tests-pie): Add tst-sbrk-pie. (tests-static): Add tst-sbrk-static.
2013-02-12Fix typoSamuel Thibault
2013-02-11Fix sbrk in PIE binariesSamuel Thibault
In PIE mode, the program gets loaded at very low address, and thus _end is very low, just before libraries, and thus initializing the brk to it does not make sense, since there is no room left there. Hardcode the brk to 0x800000 for now as a workaround.
2011-10-23Initialize.Thomas Schwinge