summaryrefslogtreecommitdiffstats
path: root/txr.1
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2015-09-17 22:23:53 -0700
committerKaz Kylheku <kaz@kylheku.com>2015-09-17 22:23:53 -0700
commit86d3b7542e1dffa525f0d131d1ef26440055f39e (patch)
tree6b8ffa84dedef15ed83b15b872cf7b376ffb1cb3 /txr.1
parent7959a22f6f5434dcbc505c1a8f7b560c5b621077 (diff)
downloadtxr-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.178
1 files changed, 78 insertions, 0 deletions
diff --git a/txr.1 b/txr.1
index 8fd09ca0..8a3d1402 100644
--- a/txr.1
+++ b/txr.1
@@ -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