summaryrefslogtreecommitdiff
path: root/shells/44bsd-csh/files/patch-proc.c
diff options
context:
space:
mode:
authorMartin Wilke <miwi@FreeBSD.org>2011-06-25 09:23:47 +0000
committerMartin Wilke <miwi@FreeBSD.org>2011-06-25 09:23:47 +0000
commit62fbb7f298d06b4b2a8ca553af5a3c8f49496f53 (patch)
tree04dbee4887723df402a293e1a4fcd6092da520c7 /shells/44bsd-csh/files/patch-proc.c
parentAdd missing patch (diff)
Bye Bye
2011-05-01 irc/gdesklets-irc: Upstream disapear and distfile is no more available 2011-06-24 net/libevnet: no longer necessary now that libevent2 has been released 2011-05-01 shells/44bsd-csh: Upstream disapear and distfile is no more available 2011-05-01 www/mod_auth_ldap: apache 13/20 is sceduled for deletion, migrate to 2.2.x+ and mod_authnz_ldap now 2011-05-01 www/mod_auth_remote: will be unsupported by ASF when 2.4.0 is release, migrate to 2.2.x+ now 2011-05-01 www/mod_authenticache: will be unsupported by ASF when 2.4.0 is release, migrate to 2.2.x+ now 2011-05-01 www/mod_layout2: will be unsupported by ASF when 2.4.0 is release, migrate to 2.2.x+ now 2011-05-01 www/mod_macro2: will be unsupported by ASF when 2.4.0 is release, migrate to 2.2.x+ now 2011-05-01 www/mod_traf_thief: will be unsupported by ASF when 2.4.0 is release, migrate to 2.2.x+ now 2011-05-01 www/mod_transform: will be unsupported by ASF when 2.4.0 is release, migrate to 2.2.x+ now
Notes
Notes: svn path=/head/; revision=276353
Diffstat (limited to 'shells/44bsd-csh/files/patch-proc.c')
-rw-r--r--shells/44bsd-csh/files/patch-proc.c50
1 files changed, 0 insertions, 50 deletions
diff --git a/shells/44bsd-csh/files/patch-proc.c b/shells/44bsd-csh/files/patch-proc.c
deleted file mode 100644
index d938524ed34f..000000000000
--- a/shells/44bsd-csh/files/patch-proc.c
+++ /dev/null
@@ -1,50 +0,0 @@
-$FreeBSD$
-
---- proc.c Tue Jun 4 20:07:29 2002
-+++ proc.c Tue Jun 4 20:14:09 2002
-@@ -89,13 +89,13 @@
- int pid;
- extern int insource;
- int save_errno = errno;
-- union wait w;
-+ int w;
- int jobflags;
- struct rusage ru;
-
- loop:
- errno = 0; /* reset, just in case */
-- pid = wait3(&w.w_status,
-+ pid = wait3(&w,
- (setintr && (intty || insource) ? WNOHANG | WUNTRACED : WNOHANG), &ru);
-
- if (pid <= 0) {
-@@ -117,7 +117,7 @@
- pp->p_flags &= ~(PRUNNING | PSTOPPED | PREPORTED);
- if (WIFSTOPPED(w)) {
- pp->p_flags |= PSTOPPED;
-- pp->p_reason = w.w_stopsig;
-+ pp->p_reason = WSTOPSIG(w);
- }
- else {
- if (pp->p_flags & (PTIME | PPTIME) || adrof(STRtime))
-@@ -125,16 +125,16 @@
-
- pp->p_rusage = ru;
- if (WIFSIGNALED(w)) {
-- if (w.w_termsig == SIGINT)
-+ if (WTERMSIG(w) == SIGINT)
- pp->p_flags |= PINTERRUPTED;
- else
- pp->p_flags |= PSIGNALED;
-- if (w.w_coredump)
-+ if (WCOREDUMP(w))
- pp->p_flags |= PDUMPED;
-- pp->p_reason = w.w_termsig;
-+ pp->p_reason = WTERMSIG(w);
- }
- else {
-- pp->p_reason = w.w_retcode;
-+ pp->p_reason = WEXITSTATUS(w);
- if (pp->p_reason != 0)
- pp->p_flags |= PAEXITED;
- else