diff options
author | cinap_lenrek <cinap_lenrek@felloff.net> | 2015-08-09 21:48:58 +0200 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2015-08-09 21:48:58 +0200 |
commit | 7ba3be82a713597a632ebfc8ae25f0bbed21cd31 (patch) | |
tree | 4a0c3a75b55b5e5775404c3b63de2a3245bece50 /sys | |
parent | b4f56f1f4e8eff3965457ef9492528ee820e59bd (diff) |
kernel: move "setargs" field in Proc structure after "nargs" and "args"
Diffstat (limited to 'sys')
-rw-r--r-- | sys/src/9/port/portdat.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/src/9/port/portdat.h b/sys/src/9/port/portdat.h index be5b4e4df..4c55cbcfb 100644 --- a/sys/src/9/port/portdat.h +++ b/sys/src/9/port/portdat.h @@ -651,6 +651,7 @@ struct Proc char *user; char *args; int nargs; /* number of bytes of args */ + int setargs; /* process changed its args */ Proc *rnext; /* next process in run queue */ Proc *qnext; /* next process on queue for a QLock */ QLock *qlock; /* addr of qlock being queued for DEBUG */ @@ -766,8 +767,6 @@ struct Proc uintptr qpc; /* pc calling last blocking qlock */ QLock *eql; /* interruptable eqlock */ - int setargs; /* process changed its args */ - void *ureg; /* User registers for notes */ void *dbgreg; /* User registers for devproc */ Notsave; |