lkml.org 
[lkml]   [2010]   [May]   [10]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH v3 07/11] rlimits: add rlimit64 structure
    Date
    Add a platform independent structure for resource limits to use with
    a new prlimit64 syscall. This structure is the same which uses glibc
    for 64-bit limits.

    Also add corresponding infinity which is a 64-bit full of ones.

    Signed-off-by: Jiri Slaby <jslaby@suse.cz>
    ---
    include/linux/resource.h | 7 +++++++
    1 files changed, 7 insertions(+), 0 deletions(-)

    diff --git a/include/linux/resource.h b/include/linux/resource.h
    index cf8dc96..037aa7e 100644
    --- a/include/linux/resource.h
    +++ b/include/linux/resource.h
    @@ -43,6 +43,13 @@ struct rlimit {
    unsigned long rlim_max;
    };

    +#define RLIM64_INFINITY (~0ULL)
    +
    +struct rlimit64 {
    + __u64 rlim_cur;
    + __u64 rlim_max;
    +};
    +
    #define PRIO_MIN (-20)
    #define PRIO_MAX 20

    --
    1.7.1



    \
     
     \ /
      Last update: 2010-05-12 10:17    [W:4.297 / U:0.016 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site