summaryrefslogtreecommitdiff
path: root/tests/sys/vm/soxstack/soxstack.c
AgeCommit message (Collapse)Author
2024-05-08soxstack: slience 32-bit gcc warningBrooks Davis
Modern GCC complains when casting pointers to integers of a different size (even a larger one). Switch from uint64_t to uintptr_t which will always be the right size for a stack address instead of maybe being too big. Reviewed by: dchagin, emaste Differential Revision: https://reviews.freebsd.org/D45087
2023-08-08soxstack: silence GCC warningEd Maste
Add parens around _STACK_FLAG_GROWS expression to fix GCC warning about arithmetic in operand of '|'. Sponsored by: The FreeBSD Foundation
2023-08-08tests: Add stack grows testsDmitry Chagin
Reviewed by: kib Differential Revision: https://reviews.freebsd.org/D41320 MFC after: 2 weeks