diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2015-09-17 22:23:53 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2015-09-17 22:23:53 -0700 |
commit | 86d3b7542e1dffa525f0d131d1ef26440055f39e (patch) | |
tree | 6b8ffa84dedef15ed83b15b872cf7b376ffb1cb3 /txr.1 | |
parent | 7959a22f6f5434dcbc505c1a8f7b560c5b621077 (diff) | |
download | txr-86d3b7542e1dffa525f0d131d1ef26440055f39e.tar.gz txr-86d3b7542e1dffa525f0d131d1ef26440055f39e.tar.bz2 txr-86d3b7542e1dffa525f0d131d1ef26440055f39e.zip |
Add unix group database functions.
* configure (have_grgid): New variable.
New tests added for getgrent and the rest.
(HAVE_GRGID, HAVE_GRGID_R): New preprocessor symbols
conditionally deposited into config/config.h.
* sysif.c (group_s, mem_s): New global symbol variables.
(setgrent_wrap, endgrent_wrap, fill_group, make_grstruct,
get_grent_wrap, getgrgid_wrap, getgrnam_wrap): New static
functions.
(sysif_init): New global symbol variables initialized.
New group struct type instantiated.
Intrinsic functions setgrent, endgrent, getgrent,
getgrgid and getgrnam registered.
* txr.1: Documented group structure and functions.
Diffstat (limited to 'txr.1')
-rw-r--r-- | txr.1 | 78 |
1 files changed, 78 insertions, 0 deletions
@@ -31308,6 +31308,84 @@ If the search fails, .code nil is returned. +.SS* Unix Group Database + +.coNP Structure * group +.synb +.mets (defstruct group nil +.mets \ \ name passwd gid mem) +.syne +.desc +The +.code group +structure corresponds to the C type +.codn struct group . +Objects of this struct are produced by the password database +query functions +.codn getgrent , +.codn getgrgid , +and +.codn getgrnam . + +.coNP Functions @, getgrent @ setgrent and @ endgrent +.synb +.mets (getgrent) +.mets (setgrent) +.mets (endgrent) +.syne +.desc +The first time +.code getgrent +function is called, it returns the first group database entry. +On subsequent calls it returns successive entries. +Entries are returned as instances of the +.code passwd +structure. If the function cannot retrieve an entry for any reason, +it returns +.codn nil . + +The +.code setgrent +function rewinds the database scan. + +The +.code endgrent +function releases the resources associated with the scan. + +.coNP Function @ getgrgid +.synb +.mets (getgrgid << gid ) +.syne +.desc +The +.code getgrgid +searches the group database for an entry whose group ID field +is equal to the numeric +.metn gid . +If the search is successful, then a +.code group +structure representing the database entry is returned. +If the search fails, +.code nil +is returned. + +.coNP Function @ getgrnam +.synb +.mets (getgrnam << name ) +.syne +.desc +The +.code getgrnam +searches the group database for an entry whose group name +is equal to +.metn name . +If the search is successful, then a +.code group +structure representing the database entry is returned. +If the search fails, +.code nil +is returned. + .SS* Unix Signal Handling On platforms where certain advanced features of POSIX signal handling are |