Пример #1
0
int
boot_script_prompt_task_resume (struct cmd *cmd)
{
  char xx[5];

  printf ("Hit return to resume %s...", cmd->path);
  safe_gets (xx, sizeof xx);

  return boot_script_task_resume (cmd);
}
Пример #2
0
/* Resume a task.  */
static int
resume_task (struct cmd *cmd, int *val)
{
  return boot_script_task_resume (cmd);
}