Windows enables you to restrict address-space usage to a 32-bit resolution by setting a flag in the PE header (/LARGEADDRESSAWARE
). To elaborate: When set, this flag effectively emulates a 32-bit virtual address space environment (image is loaded at/allocations return- addresses <= 0xFFFFFFFF)
Does Linux have an equivalent feature?