index
:
FreeBSD-src
RELENG_2_2
RELENG_2_3
RELENG_2_3_0
RELENG_2_3_1
RELENG_2_3_2
RELENG_2_3_3
RELENG_2_3_4
RELENG_2_4
RELENG_2_4_4
RELENG_2_4_OLD
devel
devel-11
releng/10.1
releng/10.3
releng/11.0
releng/11.1
stable/10
stable/11
Raptor Engineering's fork of pfsense FreeBSD src with pfSense changes
Raptor Engineering, LLC
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
bin
/
sh
/
jobs.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
sh: Remove one syscall when waiting for a foreground job.
jilles
2013-10-18
1
-2
/
+1
*
sh: Fix race condition with signals and wait or set -T.
jilles
2013-09-02
1
-17
/
+15
*
sh: Do not prematurely discard stopped jobs in a wait builtin.
jilles
2013-08-24
1
-5
/
+1
*
sh: Recognize "--" as end of options in bg/fg/jobid builtins.
jilles
2013-08-16
1
-6
/
+9
*
sh: Remove #define MKINIT.
jilles
2013-07-25
1
-3
/
+3
*
sh: Return status 127 for unknown jobs in wait builtin.
jilles
2013-06-05
1
-5
/
+19
*
sh: Allow multiple operands in wait builtin.
jilles
2013-06-05
1
-6
/
+18
*
sh: Use O_CLOEXEC and F_DUPFD_CLOEXEC instead of separate fcntl() call.
jilles
2013-05-05
1
-8
/
+4
*
sh: Don't consider jobs -s/-p as reporting the status of jobs.
jilles
2013-04-27
1
-7
/
+9
*
sh: Fix various compiler warnings.
jilles
2013-04-01
1
-2
/
+3
*
sh: Recognize "--" and explicitly reject options in wait builtin.
jilles
2013-03-15
1
-3
/
+4
*
sh: If a SIGINT or SIGQUIT interrupts "wait", return status 128+sig.
jilles
2013-02-23
1
-1
/
+1
*
Catch TRACE parameters up with r238888. This change is only needed when
delphij
2013-02-07
1
-1
/
+1
*
sh: Show negated commands (!) in jobs output.
jilles
2013-01-31
1
-0
/
+4
*
sh: Prefer strsignal() to accessing sys_siglist directly.
jilles
2012-12-25
1
-8
/
+13
*
sh: Prefer internal nextopt() to libc getopt().
jilles
2012-09-15
1
-11
/
+4
*
sh: Fix EINTR race condition in "wait" and "set -T" using sigsuspend().
jilles
2012-07-29
1
-4
/
+40
*
sh: Do not ask for stopped/continued processes if we do not need them
jilles
2012-07-28
1
-6
/
+5
*
sh: Inline waitproc() into its only caller.
jilles
2012-07-28
1
-22
/
+9
*
sh: Track continued jobs (even if not continued by bg or fg).
jilles
2012-07-28
1
-3
/
+8
*
sh: Remove unused variable in_dowait.
jilles
2012-07-15
1
-3
/
+0
*
sh: Fix build with -DDEBUG=2.
jilles
2012-04-02
1
-2
/
+2
*
sh: Use vfork in a few common cases.
jilles
2012-02-04
1
-0
/
+49
*
Add prototypes, ANSIfy functions definitions to reduce WARNS=6 output.
charnier
2012-01-25
1
-0
/
+1
*
sh: Fix duplicate prototypes for builtins.
jilles
2011-06-13
1
-0
/
+1
*
sh: Save/restore changed variables in optimized command substitution.
jilles
2011-06-12
1
-1
/
+3
*
sh: Reduce more needless differences between error messages.
jilles
2011-06-04
1
-2
/
+2
*
sh: Remove special code for shell scripts without magic number.
jilles
2011-02-04
1
-16
/
+0
*
sh: Send messages about signals to stderr.
jilles
2011-01-30
1
-5
/
+5
*
sh: Fix signal messages being sent to the wrong file sometimes.
jilles
2011-01-18
1
-0
/
+1
*
sh: Add kill builtin.
jilles
2010-12-21
1
-0
/
+8
*
sh: Various simplifications to jobs.c:
jilles
2010-12-12
1
-11
/
+5
*
sh: Improve internal-representation-to-text code to avoid binary output.
jilles
2010-12-06
1
-3
/
+36
*
sh: POSIX says there should not be a space between Done and (exitstatus).
jilles
2010-12-05
1
-1
/
+1
*
sh: Improve jobs output of pipelines.
jilles
2010-12-05
1
-66
/
+83
*
sh: Avoid marking a job as done before it is fully created.
jilles
2010-12-05
1
-2
/
+2
*
sh: jobs -p: Do not ask the kernel for the pgid.
jilles
2010-12-05
1
-4
/
+1
*
sh: Use <stddef.h> rather than <sys/stddef.h>.
jilles
2010-10-16
1
-1
/
+1
*
In the spirit of r90111, depend on c89 and remove the "STATIC" macro
obrien
2010-10-13
1
-24
/
+24
*
Make DEBUG traces 64-bit clean:
jhb
2010-10-13
1
-13
/
+13
*
Consistently use "STATIC" for all functions in order to be able to set
obrien
2010-10-13
1
-6
/
+6
*
sh: Forget about terminated background processes sooner.
jilles
2010-06-29
1
-5
/
+56
*
sh: Pass through SIGINT from a child if interactive and job control
jilles
2010-06-06
1
-0
/
+6
*
sh: Reap any zombies before forking for a background command.
jilles
2010-05-24
1
-1
/
+13
*
sh: Various warning fixes (from WARNS=6 NO_WERROR=1):
jilles
2009-12-27
1
-4
/
+5
*
sh: Do not run callers' exception handlers in subshells.
jilles
2009-12-25
1
-0
/
+1
*
sh: Some changes to stderr flushing:
jilles
2009-11-21
1
-2
/
+2
*
Add the POSIX option -p to the jobs builtin command. It prints the PID of the
stefanf
2006-10-07
1
-17
/
+23
*
Remove some white space at EOL.
schweikh
2006-02-04
1
-2
/
+2
*
o Now when SIG_IGN signal action for SIGCHLD reap zombies
maxim
2005-12-14
1
-0
/
+2
[next]