brintos

brintos / linux-shallow public Read only

0
0
Text · 247 B · ca5ad7c Raw
13 lines · bash
1#!/bin/sh2# SPDX-License-Identifier: GPL-2.03 4original_stack_limit=$(ulimit -s)5 6./mmap_default7 8# Force mmap_bottomup to be ran with bottomup memory due to9# the unlimited stack10ulimit -s unlimited11./mmap_bottomup12ulimit -s $original_stack_limit13