Returns the (real) group ID for this process.
Process.gid #=> 500
6690 6691 6692 6693 6694 6695
# File 'process.c', line 6690 static VALUE proc_getgid(VALUE obj) { rb_gid_t gid = getgid(); return GIDT2NUM(gid); }