brintos

brintos / llvm-project-archived public Read only

0
0
Text · 313 B · c732c04 Raw
7 lines · python
1import resource2 3print("RLIMIT_AS=" + str(resource.getrlimit(resource.RLIMIT_AS)[0]))4print("RLIMIT_NOFILE=" + str(resource.getrlimit(resource.RLIMIT_NOFILE)[0]))5print("RLIMIT_STACK=" + str(resource.getrlimit(resource.RLIMIT_STACK)[0]))6print("RLIMIT_FSIZE=" + str(resource.getrlimit(resource.RLIMIT_FSIZE)[0]))7