You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
385 B
Plaintext
11 lines
385 B
Plaintext
#/bin/sh
|
|
|
|
export LD_PRELOAD=$(dirname $0)/libpreload.so
|
|
export ALLOWED_FOR_CREATE=/tmp
|
|
export ALLOWED_FOR_READ=/usr/local/include:/usr/include:/usr/lib:/usr/msp430:/usr/arm-linux-gnueabi/include:/tmp:/opt/:/dev/urandom:/etc/lsb-release:/etc/debian_version:/proc/self:/proc/self/maps
|
|
# Last-gasp limits
|
|
ulimit -t 3 # CPU time in seconds
|
|
ulimit -v 500000 # virtual RAM limit in K
|
|
|
|
"$@"
|