• Roland McGrath's avatar
    [PATCH] show RLIMIT_SIGPENDING usage in /proc/PID/status · a36e7143
    Roland McGrath authored
    Jeremy mentioned the aggravation of not being able to tell when your
    processes are using up signal queue entries and hitting the
    RLIMIT_SIGPENDING limit.  This patch adds a line to /proc/PID/status
    showing how many queue items are in use, and allowed, for your uid.
    
    I can certainly see the appeal of having a display of the number of queued
    items specific to each process, and even the items within the process
    broken down per signal number.  However, those are not things that are
    directly counted, and ascertaining them requires iterating through the
    queue.  This patch instead gives what can be readily determined in constant
    time using the accounting already done.  I'm not sure something more
    complex is warranted just to facilitate one particular debugging need.
    With this, you can see quickly that this particular problem has come up.
    Then examination of each process's SigPnd/ShdPnd lines ought to give you an
    indication of which processes have any queued RT signals sitting around for
    a long time, and you can then attack those programs directly, though there
    is no way after the fact to determine how many queued signals with the same
    number a given process has (short of killing it and seeing the usage drop).
    
    Note you may still have a mystery if the leaking programs are not leaving
    pending RT signals queued, but rather preallocating queue items via
    timer_create.  That usage is not readily apparent in any /proc information.
    Signed-off-by: default avatarRoland McGrath <roland@redhat.com>
    Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
    Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
    a36e7143
array.c 11.9 KB