HomeSort by relevance Sort by last modified time
    Searched defs:dictionary (Results 1 - 2 of 2) sorted by null

  /onnv/onnv-gate/usr/src/cmd/svc/startd/
dict.c 30 * dict.c - simple dictionary facility
32 * We maintain a dictionary, sorted by name to facilitate rapid id lookup by
35 * Right now, the dictionary is implemented as a sorted linked list which maps
39 * For now, FMRIs are never deleted from the dictionary. A service deletion
41 * id. To implement dictionary entry delete, the locking strategy for graph
55 dictionary_t *dictionary; variable
79 (void) pthread_mutex_lock(&dictionary->dict_lock);
80 if ((entry = uu_list_find(dictionary->dict_list, &tmp, NULL,
86 (void) pthread_mutex_unlock(&dictionary->dict_lock);
108 (void) pthread_mutex_lock(&dictionary->dict_lock)
    [all...]
startd.h 202 * Simple dictionary representation.
204 typedef struct dictionary { struct
216 extern dictionary_t *dictionary;

Completed in 1380 milliseconds