Fiddling with llist to make memory management easier. Specifically, the

option to delete the contents of the list when we delete the list is a
good thing.
This commit is contained in:
Rob Landley 2006-05-08 19:03:07 +00:00
parent 712ba85b30
commit a6b5b60942
5 changed files with 27 additions and 16 deletions

View File

@ -477,8 +477,8 @@ typedef struct llist_s {
} llist_t; } llist_t;
extern llist_t *llist_add_to(llist_t *old_head, char *new_item); extern llist_t *llist_add_to(llist_t *old_head, char *new_item);
extern llist_t *llist_add_to_end(llist_t *list_head, char *data); extern llist_t *llist_add_to_end(llist_t *list_head, char *data);
extern llist_t *llist_free_one(llist_t *elm); extern void *llist_pop(llist_t **elm);
extern void llist_free(llist_t *elm); extern void llist_free(llist_t *elm, void (*freeit)(void *data));
extern void print_login_issue(const char *issue_file, const char *tty); extern void print_login_issue(const char *issue_file, const char *tty);
extern void print_login_prompt(void); extern void print_login_prompt(void);

View File

@ -101,7 +101,7 @@ $(LIBBB_MOBJ5):$(LIBBB_MSRC5)
$(compile.c) -DL_$(notdir $*) $(compile.c) -DL_$(notdir $*)
LIBBB_MSRC6:=$(srcdir)/llist.c LIBBB_MSRC6:=$(srcdir)/llist.c
LIBBB_MOBJ6:=llist_add_to.o llist_add_to_end.o llist_free_one.o llist_free.o LIBBB_MOBJ6:=llist_add_to.o llist_add_to_end.o llist_pop.o llist_free.o
LIBBB_MOBJ6:=$(patsubst %,$(LIBBB_DIR)/%, $(LIBBB_MOBJ6)) LIBBB_MOBJ6:=$(patsubst %,$(LIBBB_DIR)/%, $(LIBBB_MOBJ6))
$(LIBBB_MOBJ6):$(LIBBB_MSRC6) $(LIBBB_MOBJ6):$(LIBBB_MSRC6)
$(compile.c) -DL_$(notdir $*) $(compile.c) -DL_$(notdir $*)

View File

@ -47,21 +47,32 @@ llist_t *llist_add_to_end(llist_t *list_head, char *data)
} }
#endif #endif
#ifdef L_llist_free_one #ifdef L_llist_pop
/* Free the current list element and advance to the next entry in the list. /* Remove first element from the list and return it */
* Returns a pointer to the next element. */ void *llist_pop(llist_t **head)
llist_t *llist_free_one(llist_t *elm)
{ {
llist_t *next = elm ? elm->link : NULL; void *data;
free(elm);
return next; if(!*head) data = *head;
else {
void *next = (*head)->link;
data = (*head)->data;
*head = (*head)->link;
free(next);
}
return data;
} }
#endif #endif
#ifdef L_llist_free #ifdef L_llist_free
/* Recursively free all elements in the linked list. */ /* Recursively free all elements in the linked list. If freeit != NULL
void llist_free(llist_t *elm) * call it on each datum in the list */
void llist_free(llist_t *elm, void (*freeit)(void *data))
{ {
while ((elm = llist_free_one(elm))); while (elm) {
void *data = llist_pop(&elm);
if (freeit) freeit(data);
}
} }
#endif #endif

View File

@ -65,7 +65,7 @@ int pidof_main(int argc, char **argv)
while (omits_p) { while (omits_p) {
/* are we asked to exclude the parent's process ID? */ /* are we asked to exclude the parent's process ID? */
if (!strncmp(omits_p->data, "%PPID", 5)) { if (!strncmp(omits_p->data, "%PPID", 5)) {
omits_p = llist_free_one(omits_p); llist_pop(&omits_p);
snprintf(getppid_str, sizeof(getppid_str), "%d", getppid()); snprintf(getppid_str, sizeof(getppid_str), "%d", getppid());
omits_p = llist_add_to(omits_p, getppid_str); omits_p = llist_add_to(omits_p, getppid_str);
#if 0 #if 0
@ -117,7 +117,7 @@ int pidof_main(int argc, char **argv)
#if ENABLE_FEATURE_PIDOF_OMIT #if ENABLE_FEATURE_PIDOF_OMIT
if (ENABLE_FEATURE_CLEAN_UP) if (ENABLE_FEATURE_CLEAN_UP)
llist_free(omits); llist_free(omits, NULL);
#endif #endif
return fail ? EXIT_FAILURE : EXIT_SUCCESS; return fail ? EXIT_FAILURE : EXIT_SUCCESS;
} }

View File

@ -182,7 +182,7 @@ llist_t *fslist = 0;
#if ENABLE_FEATURE_CLEAN_UP #if ENABLE_FEATURE_CLEAN_UP
static void delete_block_backed_filesystems(void) static void delete_block_backed_filesystems(void)
{ {
llist_free(fslist); llist_free(fslist, free);
} }
#else #else
void delete_block_backed_filesystems(void); void delete_block_backed_filesystems(void);