summaryrefslogtreecommitdiffstats
path: root/bin/sh/jobs.h
diff options
context:
space:
mode:
Diffstat (limited to 'bin/sh/jobs.h')
-rw-r--r--bin/sh/jobs.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/sh/jobs.h b/bin/sh/jobs.h
index 5bc32eb..53c0ba0 100644
--- a/bin/sh/jobs.h
+++ b/bin/sh/jobs.h
@@ -67,7 +67,7 @@ struct job {
struct procstat ps0; /* status of process */
struct procstat *ps; /* status or processes when more than one */
short nprocs; /* number of processes */
- short pgrp; /* process group of this job */
+ pid_t pgrp; /* process group of this job */
char state; /* true if job is finished */
char used; /* true if this entry is in used */
char changed; /* true if status has changed */
@@ -92,7 +92,7 @@ void showjobs(int, int, int);
int waitcmd(int, char **);
int jobidcmd(int, char **);
struct job *makejob(union node *, int);
-int forkshell(struct job *, union node *, int);
+pid_t forkshell(struct job *, union node *, int);
int waitforjob(struct job *, int *);
int stoppedjobs(void);
char *commandtext(union node *);
OpenPOWER on IntegriCloud