Searched refs:fsl (Results 1 – 2 of 2) sorted by relevance
27 struct dl_scope_free_list *fsl; in _dl_scope_free() local28 #define DL_SCOPE_FREE_LIST_SIZE (sizeof (fsl->list) / sizeof (fsl->list[0])) in _dl_scope_free()32 else if ((fsl = GL(dl_scope_free_list)) == NULL) in _dl_scope_free()34 GL(dl_scope_free_list) = fsl = malloc (sizeof (*fsl)); in _dl_scope_free()35 if (fsl == NULL) in _dl_scope_free()43 fsl->list[0] = old; in _dl_scope_free()44 fsl->count = 1; in _dl_scope_free()47 else if (fsl->count < DL_SCOPE_FREE_LIST_SIZE) in _dl_scope_free()48 fsl->list[fsl->count++] = old; in _dl_scope_free()52 while (fsl->count > 0) in _dl_scope_free()[all …]
501 struct dl_scope_free_list *fsl = GL(dl_scope_free_list); in _dl_close_worker() local502 if (fsl != NULL) in _dl_close_worker()503 while (fsl->count > 0) in _dl_close_worker()504 free (fsl->list[--fsl->count]); in _dl_close_worker()