mirror of
https://github.com/AdaCore/e3-core.git
synced 2026-02-12 12:29:08 -08:00
To correct CTRL-C, we stop setting rlimit as the foreground program and ignore the SIGTTOU signal. However, this does not allow rlimit to be used with an interactive terminal. To solve this problem, we introduce the --foreground option. IT-465
rlimit - limit the execution time of a command ============================================== There are two different implementation of the rlimit command, one for windows rlimit-NT.c and one for UNIX platforms rlimit.c To add a new platform, compile rlimit using: $CC -o rlimit-$PLATFORM rlimit.c or $CC -o rlimit-$PLATFORM rlimit-NT.c and copy the resulting binary into e3/os/data