Home | History | Annotate | Download | only in lib

Lines Matching full:actions

1 /* Emergency actions in case of a fatal signal.
112 /* Type of an entry in the actions array.
121 /* The registered cleanup actions. */
123 static actions_entry_t * volatile actions = static_actions;
163 action = actions[n].action;
218 /* Extend the actions array. Note that we cannot use xrealloc(),
221 actions_entry_t *old_actions = actions;
233 actions = new_actions;
235 /* Now we can free the old actions array. */
242 actions[actions_count]. */
243 actions[actions_count].action = action;