Ignore:
Timestamp:
Oct 7, 2007, 2:24:15 AM (18 years ago)
Author:
bird
Message:

Added psh parameter to the remaining global functions.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kash/bltin/kill.c

    r843 r1202  
    153153        for (errors = 0; argc; argc--, argv++) {
    154154#ifdef SHELL
    155                 extern int getjobpgrp(const char *);
     155                extern int getjobpgrp(shinstance *psh, const char *);
    156156                if (*argv[0] == '%') {
    157                         pid = getjobpgrp(*argv);
     157                        pid = getjobpgrp(psh, *argv);
    158158                        if (pid == 0) {
    159159                                warnx("illegal job id: %s", *argv);
Note: See TracChangeset for help on using the changeset viewer.