Ignore:
Timestamp:
Dec 20, 2016, 4:07:32 PM (7 years ago)
Author:
Bruno Cornec
Message:

New 3?3 banch for incorporation of latest busybox 1.25. Changing minor version to handle potential incompatibilities.

Location:
branches/3.3
Files:
1 edited
1 copied

Legend:

Unmodified
Added
Removed
  • branches/3.3/mindi-busybox/shell/shell_common.c

    r3232 r3621  
    3838/* read builtin */
    3939
    40 /* Needs to be interruptible: shell mush handle traps and shell-special signals
     40/* Needs to be interruptible: shell must handle traps and shell-special signals
    4141 * while inside read. To implement this, be sure to not loop on EINTR
    4242 * and return errno == EINTR reliably.
     
    329329
    330330/* "-": treat args as parameters of option with ASCII code 1 */
    331 static const char ulimit_opt_string[] = "-HSa"
     331static const char ulimit_opt_string[] ALIGN1 = "-HSa"
    332332#ifdef RLIMIT_FSIZE
    333333            "f::"
     
    381381
    382382    if (val == RLIM_INFINITY)
    383         printf("unlimited\n");
     383        puts("unlimited");
    384384    else {
    385385        val >>= l->factor_shift;
     
    494494            break;
    495495        }
    496 
    497496    } /* while (there are options) */
    498497
Note: See TracChangeset for help on using the changeset viewer.