Files
Léo Cardao ce4ae529df Fix CTRL-C on a program launched with rlimit and add --foreground option
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
2023-06-23 15:00:40 +02:00
..
2019-07-11 12:40:15 +02:00
2021-08-03 18:20:17 +02:00

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