/* Run all commands to be run right before halt/reboot */
static void run_lastAction(void)
{
- initAction *a;
- for (a = initActionList; a; a = a->nextPtr) {
+ initAction *a, *tmp;
+ for (a = tmp = initActionList; a; a = tmp = tmp->nextPtr) {
if (a->action == CTRLALTDEL) {
waitfor(a->process, a->console, FALSE);
delete_initAction(a);
extern int init_main(int argc, char **argv)
{
- initAction *a;
+ initAction *a, *tmp;
pid_t wpid;
int status;
/* Now run everything that needs to be run */
/* First run the sysinit command */
- for (a = initActionList; a; a = a->nextPtr) {
+ for (a = tmp = initActionList; a; a = tmp = tmp->nextPtr) {
if (a->action == SYSINIT) {
waitfor(a->process, a->console, FALSE);
/* Now remove the "sysinit" entry from the list */
}
}
/* Next run anything that wants to block */
- for (a = initActionList; a; a = a->nextPtr) {
+ for (a = tmp = initActionList; a; a = tmp = tmp->nextPtr) {
if (a->action == WAIT) {
waitfor(a->process, a->console, FALSE);
/* Now remove the "wait" entry from the list */
}
}
/* Next run anything to be run only once */
- for (a = initActionList; a; a = a->nextPtr) {
+ for (a = tmp = initActionList; a; a = tmp = tmp->nextPtr) {
if (a->action == ONCE) {
run(a->process, a->console, FALSE);
/* Now remove the "once" entry from the list */
/* Run all commands to be run right before halt/reboot */
static void run_lastAction(void)
{
- initAction *a;
- for (a = initActionList; a; a = a->nextPtr) {
+ initAction *a, *tmp;
+ for (a = tmp = initActionList; a; a = tmp = tmp->nextPtr) {
if (a->action == CTRLALTDEL) {
waitfor(a->process, a->console, FALSE);
delete_initAction(a);
extern int init_main(int argc, char **argv)
{
- initAction *a;
+ initAction *a, *tmp;
pid_t wpid;
int status;
/* Now run everything that needs to be run */
/* First run the sysinit command */
- for (a = initActionList; a; a = a->nextPtr) {
+ for (a = tmp = initActionList; a; a = tmp = tmp->nextPtr) {
if (a->action == SYSINIT) {
waitfor(a->process, a->console, FALSE);
/* Now remove the "sysinit" entry from the list */
}
}
/* Next run anything that wants to block */
- for (a = initActionList; a; a = a->nextPtr) {
+ for (a = tmp = initActionList; a; a = tmp = tmp->nextPtr) {
if (a->action == WAIT) {
waitfor(a->process, a->console, FALSE);
/* Now remove the "wait" entry from the list */
}
}
/* Next run anything to be run only once */
- for (a = initActionList; a; a = a->nextPtr) {
+ for (a = tmp = initActionList; a; a = tmp = tmp->nextPtr) {
if (a->action == ONCE) {
run(a->process, a->console, FALSE);
/* Now remove the "once" entry from the list */