Created new jam variable JAMJOBS, which is set by the -jx flag.
Diff
jam/Jam.html | 1 +
jam/jam.c | 3 +++
2 files changed, 4 insertions(+)
@@ -1134,6 +1134,7 @@
<TABLE WIDTH=75% ALIGN=CENTER>
<TR><TD>JAMDATE<TD>Time and date at <b>jam</b> start-up.
<TR><TD>JAMJOBS<TD>Number of shell commands to run concurrently, as specified by jam -jx.
<TR><TD>JAMUNAME<TD>Ouput of <b>uname</b>(1) command (Unix only)
<TR><TD>JAMVERSION<TD><b>jam</b> version, as reported by jam -v.
@@ -229,7 +229,10 @@
anyhow++;
if( ( s = getoptval( optv, 'j', 0 ) ) )
{
globs.jobs = atoi( s );
var_set( "JAMJOBS", list_new( L0, s, 0 ), VAR_SET );
}
if( ( s = getoptval( optv, 'g', 0 ) ) )
globs.newestfirst = 1;