diff options
Diffstat (limited to 'src/include/gpxe/process.h')
-rw-r--r-- | src/include/gpxe/process.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/include/gpxe/process.h b/src/include/gpxe/process.h index a46091911..944858d76 100644 --- a/src/include/gpxe/process.h +++ b/src/include/gpxe/process.h @@ -47,6 +47,7 @@ static inline __attribute__ (( always_inline )) void process_init_stopped ( struct process *process, void ( * step ) ( struct process *process ), struct refcnt *refcnt ) { + INIT_LIST_HEAD ( &process->list ); process->step = step; process->refcnt = refcnt; } |