rlimcur
rlimcur is an informal term used to denote the current, or soft, resource limit of a process as defined by the POSIX resource limit interface. It specifically refers to the rlim_cur field within the resource limit structure used by system calls that manage limits.
In POSIX, resource limits are represented by struct rlimit, which contains two members: rlim_cur and rlim_max.
The getrlimit and setrlimit system calls retrieve and modify these limits for a given resource. Examples of
Notes on terminology and portability: rlim_cur is the explicit field name in the standard struct rlimit, and