HomeSort by relevance Sort by last modified time
    Searched refs:ksh_NSIG (Results 1 - 4 of 4) sorted by null

  /external/mksh/src/
sh.h 340 /* determine ksh_NSIG: first, use the traditional definitions */
341 #undef ksh_NSIG
343 #define ksh_NSIG (NSIG)
345 #define ksh_NSIG (_NSIG)
347 #define ksh_NSIG (SIGMAX + 1)
349 #define ksh_NSIG (_SIGMAX + 1)
351 #define ksh_NSIG (NSIG_MAX)
356 #if (ksh_NSIG < 1)
358 #undef ksh_NSIG
366 #elif (ksh_NSIG > NSIG_MAX
    [all...]
histrap.c 32 Trap sigtraps[ksh_NSIG + 1];
1022 for (i = 1; i < ksh_NSIG; i++) {
1122 /* signal number (1..ksh_NSIG) or 0? */
1125 return ((getn(cs, &i) && 0 <= i && i < ksh_NSIG) ?
1151 i = ksh_NSIG + 1;
1210 int i = ksh_NSIG + 1;
1231 int i = ksh_NSIG + 1;
1250 int i = ksh_NSIG + 1;
1344 int i = ksh_NSIG + 1;
1363 int i = ksh_NSIG + 1
    [all...]
funcs.c 1393 #if (ksh_NSIG <= 128)
1394 if (n > 128 && n < 128 + ksh_NSIG)
1397 if (n > 0 && n < ksh_NSIG)
1404 while (n < ksh_NSIG) {
1406 shf_putc(++n == ksh_NSIG ? '\n' : ' ',
1411 int j = ksh_NSIG - 1;
1418 for (j = 1; j < ksh_NSIG; j++) {
1430 print_columns(shl_stdout, (unsigned int)(ksh_NSIG - 1),
    [all...]
jobs.c 1231 termsig < ksh_NSIG &&
    [all...]

Completed in 931 milliseconds