Main index | Section 9 | Options |
#include <sys/param.h>
#include <sys/proc.h>
#include <sys/resourcevar.h>
The uihashinit() function initializes the uidinfo hash table and its mutex. This function should only be called during system initialization.
The uifind() function looks up and returns the uidinfo structure for uid. If no uidinfo structure exists for uid, a new structure will be allocated and initialized. The uidinfo hash mutex is acquired and released.
The uihold() function increases the reference count on uip. uip, Ns, 's lock is acquired and released.
The uifree() function decreases the reference count on uip, and if the count reaches 0 uip is freed. uip, Ns, 's lock is acquired and release and the uidinfo hash mutex may be acquired and released.
UIDINFO (9) | July 10, 2001 |
Main index | Section 9 | Options |
Please direct any comments about this manual page service to Ben Bullock. Privacy policy.
“ | Never write it in C if you can do it in `awk'; Never do it in `awk' if `sed' can handle it; Never use `sed' when `tr' can do the job; Never invoke `tr' when `cat' is sufficient; Avoid using `cat' whenever possible. |
” |
— Taylor's Laws of Programming |