i-bash/builtins/fg_bg.def

162 lines
3.6 KiB
Modula-2
Raw Normal View History

1996-08-26 18:22:31 +00:00
This file is fg_bg.def, from which is created fg_bg.c.
It implements the builtins "bg" and "fg" in Bash.
2004-07-27 13:29:18 +00:00
Copyright (C) 1987-2003 Free Software Foundation, Inc.
1996-08-26 18:22:31 +00:00
This file is part of GNU Bash, the Bourne Again SHell.
Bash is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free
2000-03-17 21:46:59 +00:00
Software Foundation; either version 2, or (at your option) any later
1996-08-26 18:22:31 +00:00
version.
Bash is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
for more details.
You should have received a copy of the GNU General Public License along
with Bash; see the file COPYING. If not, write to the Free Software
2000-03-17 21:46:59 +00:00
Foundation, 59 Temple Place, Suite 330, Boston, MA 02111 USA.
1996-08-26 18:22:31 +00:00
$PRODUCES fg_bg.c
$BUILTIN fg
$FUNCTION fg_builtin
$DEPENDS_ON JOB_CONTROL
$SHORT_DOC fg [job_spec]
Place JOB_SPEC in the foreground, and make it the current job. If
JOB_SPEC is not present, the shell's notion of the current job is
used.
$END
1996-12-23 17:02:34 +00:00
#include <config.h>
1997-06-05 14:59:13 +00:00
#include "../bashtypes.h"
1996-08-26 18:22:31 +00:00
#include <signal.h>
1996-12-23 17:02:34 +00:00
#if defined (HAVE_UNISTD_H)
# include <unistd.h>
#endif
2004-07-27 13:29:18 +00:00
#include "../bashintl.h"
1996-08-26 18:22:31 +00:00
#include "../shell.h"
#include "../jobs.h"
1996-12-23 17:02:34 +00:00
#include "common.h"
2002-07-17 14:10:11 +00:00
#include "bashgetopt.h"
1996-08-26 18:22:31 +00:00
#if defined (JOB_CONTROL)
extern char *this_command_name;
2001-11-13 17:56:06 +00:00
static int fg_bg __P((WORD_LIST *, int));
1996-08-26 18:22:31 +00:00
/* How to bring a job into the foreground. */
int
fg_builtin (list)
WORD_LIST *list;
{
1996-12-23 17:02:34 +00:00
int fg_bit;
register WORD_LIST *t;
1996-08-26 18:22:31 +00:00
1996-12-23 17:02:34 +00:00
if (job_control == 0)
1996-08-26 18:22:31 +00:00
{
2002-07-17 14:10:11 +00:00
sh_nojobs ((char *)NULL);
1996-08-26 18:22:31 +00:00
return (EXECUTION_FAILURE);
}
1996-12-23 17:02:34 +00:00
if (no_options (list))
return (EX_USAGE);
2002-07-17 14:10:11 +00:00
list = loptend;
1996-12-23 17:02:34 +00:00
1996-08-26 18:22:31 +00:00
/* If the last arg on the line is '&', then start this job in the
background. Else, fg the job. */
1996-12-23 17:02:34 +00:00
for (t = list; t && t->next; t = t->next)
;
fg_bit = (t && t->word->word[0] == '&' && t->word->word[1] == '\0') == 0;
1996-08-26 18:22:31 +00:00
return (fg_bg (list, fg_bit));
}
#endif /* JOB_CONTROL */
$BUILTIN bg
$FUNCTION bg_builtin
$DEPENDS_ON JOB_CONTROL
$SHORT_DOC bg [job_spec]
Place JOB_SPEC in the background, as if it had been started with
`&'. If JOB_SPEC is not present, the shell's notion of the current
job is used.
$END
#if defined (JOB_CONTROL)
/* How to put a job into the background. */
int
bg_builtin (list)
WORD_LIST *list;
{
1996-12-23 17:02:34 +00:00
if (job_control == 0)
1996-08-26 18:22:31 +00:00
{
2002-07-17 14:10:11 +00:00
sh_nojobs ((char *)NULL);
1996-08-26 18:22:31 +00:00
return (EXECUTION_FAILURE);
}
1996-12-23 17:02:34 +00:00
if (no_options (list))
return (EX_USAGE);
2002-07-17 14:10:11 +00:00
list = loptend;
1996-12-23 17:02:34 +00:00
1996-08-26 18:22:31 +00:00
return (fg_bg (list, 0));
}
/* How to put a job into the foreground/background. */
static int
fg_bg (list, foreground)
WORD_LIST *list;
int foreground;
{
sigset_t set, oset;
1996-12-23 17:02:34 +00:00
int job, status, old_async_pid;
1996-08-26 18:22:31 +00:00
BLOCK_CHILD (set, oset);
job = get_job_spec (list);
1996-12-23 17:02:34 +00:00
if (job < 0 || job >= job_slots || jobs[job] == 0)
1996-08-26 18:22:31 +00:00
{
if (job != DUP_JOB)
2002-07-17 14:10:11 +00:00
sh_badjob (list ? list->word->word : "current");
1996-08-26 18:22:31 +00:00
goto failure;
}
/* Or if jobs[job]->pgrp == shell_pgrp. */
1996-12-23 17:02:34 +00:00
if (IS_JOBCONTROL (job) == 0)
1996-08-26 18:22:31 +00:00
{
2004-07-27 13:29:18 +00:00
builtin_error (_("job %d started without job control"), job + 1);
1996-08-26 18:22:31 +00:00
goto failure;
}
1996-12-23 17:02:34 +00:00
if (foreground == 0)
1996-08-26 18:22:31 +00:00
{
old_async_pid = last_asynchronous_pid;
last_asynchronous_pid = jobs[job]->pgrp; /* As per Posix.2 5.4.2 */
}
status = start_job (job, foreground);
if (status >= 0)
{
/* win: */
UNBLOCK_CHILD (oset);
return (status);
}
else
{
1996-12-23 17:02:34 +00:00
if (foreground == 0)
1996-08-26 18:22:31 +00:00
last_asynchronous_pid = old_async_pid;
failure:
UNBLOCK_CHILD (oset);
return (EXECUTION_FAILURE);
}
}
#endif /* JOB_CONTROL */