(lwpProc): Change type of member runtime to time_t.
(lwpSleepUntil): Change type of parameter to time_t.
This commit is contained in:
parent
8e6300b620
commit
e501656b4a
3 changed files with 6 additions and 4 deletions
|
@ -58,7 +58,7 @@ struct lwpProc {
|
|||
void (*entry)(void *); /* entry point */
|
||||
int dead; /* whether the process can be rescheduled */
|
||||
int pri; /* which scheduling queue we're on */
|
||||
long runtime; /* time at which process is restarted */
|
||||
time_t runtime; /* time at which process is restarted */
|
||||
int fd; /* fd we're blocking on */
|
||||
int argc; /* initial arguments */
|
||||
char **argv;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue