Home | History | Annotate | Download | only in gnulib-lib

Lines Matching refs:actions

1 /* Emergency actions in case of a fatal signal.
116 /* Type of an entry in the actions array.
125 /* The registered cleanup actions. */
127 static actions_entry_t * volatile actions = static_actions;
157 action = actions[n].action;
202 /* Extend the actions array. Note that we cannot use xrealloc(),
205 actions_entry_t *old_actions = actions;
217 actions = new_actions;
219 /* Now we can free the old actions array. */
226 actions[actions_count]. */
227 actions[actions_count].action = action;