Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 441034
Collapse All | Expand All

(-)boost_1_51_0.orig/tools/build/v2/engine/execunix.c (-2 / +2 lines)
Lines 392-398 Link Here
392
392
393
    /* Compute max read file descriptor for use in select. */
393
    /* Compute max read file descriptor for use in select. */
394
    FD_ZERO(fds);
394
    FD_ZERO(fds);
395
    for ( i = 0; i < globs.jobs; ++i )
395
    for ( i = 0; i < MAXJOBS && i < globs.jobs; ++i )
396
    {
396
    {
397
        if ( 0 < cmdtab[ i ].fd[ OUT ] )
397
        if ( 0 < cmdtab[ i ].fd[ OUT ] )
398
        {
398
        {
Lines 473-479 Link Here
473
473
474
        if ( 0 < ret )
474
        if ( 0 < ret )
475
        {
475
        {
476
            for ( i = 0; i < globs.jobs; ++i )
476
            for ( i = 0; i < MAXJOBS && i < globs.jobs; ++i )
477
            {
477
            {
478
                int out = 0;
478
                int out = 0;
479
                int err = 0;
479
                int err = 0;

Return to bug 441034