1: / C library -- execv
2:
3: / execv(file, argv);
4: /
5: / where argv is a vector argv[0] ... argv[x], 0
6: / last vector element must be 0
7: / environment passed automatically
8:
9: .globl _execv,
10: .globl cerror, _environ
11: .exece = 59.
12:
13: _execv:
14: mov r5,-(sp)
15: mov sp,r5
16: mov 4(r5),0f
17: mov 6(r5),0f+2
18: mov _environ,0f+4
19: sys 0; 9f
20: jmp cerror
21: .data
22: 9:
23: sys .exece; 0:..; ..; ..
Defined functions
_execv
declared in line
9; defined in line
13; used 15 times