1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
gidd_alloc
===========
find a GID within the specified range which is not used by any process
:index:`gidd_alloc<single: gidd_alloc; HTCondor commands>`\ :index:`gidd_alloc command`
Synopsis
--------
**gidd_alloc** *min-gid* *max-gid*
Description
-----------
This program will scan the alive PIDs, looking for which GID is unused
in the supplied, inclusive range specified by the required arguments
*min-gid* and *max-gid*. Upon finding one, it will add the GID to its
own supplementary group list, and then scan the PIDs again expecting to
find only itself using the GID. If no collision has occurred, the
program exits, otherwise it retries.
General Remarks
---------------
This is a program only available for the Linux ports of HTCondor.
Exit Status
-----------
*gidd_alloc* will exit with a status value of 0 (zero) upon success,
and it will exit with the value 1 (one) upon failure.
|