diff options
| author | Poul-Henning Kamp <phk@FreeBSD.org> | 2002-09-28 11:28:44 +0000 |
|---|---|---|
| committer | Poul-Henning Kamp <phk@FreeBSD.org> | 2002-09-28 11:28:44 +0000 |
| commit | df60b2499b6103f03e4f7c506a245a542764d7fb (patch) | |
| tree | 79644aad2c9a67b5fc634dc52949684022540631 | |
| parent | 165d2b993c448b8593bd525046abc60555889ab1 (diff) | |
Notes
| -rw-r--r-- | sys/sys/proc.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/sys/proc.h b/sys/sys/proc.h index 63327cd183b3..2a32d56d05f8 100644 --- a/sys/sys/proc.h +++ b/sys/sys/proc.h @@ -114,7 +114,7 @@ struct procsig { struct pargs { u_int ar_ref; /* Reference count. */ u_int ar_length; /* Length. */ - u_char ar_args[]; /* Arguments. */ + u_char ar_args[1]; /* Arguments. */ }; /*- @@ -307,7 +307,7 @@ struct thread { TDS_INHIBITED, TDS_CAN_RUN, TDS_RUNQ, - TDS_RUNNING, + TDS_RUNNING } td_state; register_t td_retval[2]; /* (k) Syscall aux returns. */ struct callout td_slpcallout; /* (h) Callout for sleep. */ |
