xv6

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit f83f7ce2f6ef5b840d8af8ed2573e1934865406f
parent 00d0f794cfd7a1df3b73f28028c8768bae3fef09
Author: rsc <rsc>
Date:   Wed,  8 Aug 2007 08:57:55 +0000

set init name

Diffstat:
Mmain.c | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/main.c b/main.c @@ -147,6 +147,7 @@ process0() load_icode(p1, _binary__init_start, (uint) _binary__init_size); p1->state = RUNNABLE; + safestrcpy(p1->name, "init", sizeof p1->name); proc_wait(); panic("init exited");