diff options
| author | rtm <rtm> | 2006-07-11 17:39:45 +0000 |
|---|---|---|
| committer | rtm <rtm> | 2006-07-11 17:39:45 +0000 |
| commit | b548df152b5a53ea8cfcb2d94fbdee07884d8050 (patch) | |
| tree | b1eec270a0892fad7a256ae809ebedbbcfaeb720 /defs.h | |
| parent | 5ce9751cab960e3b226eb0720e781e793a0be4ed (diff) | |
| download | xv6-labs-2022-b548df152b5a53ea8cfcb2d94fbdee07884d8050.tar.xz xv6-labs-2022-b548df152b5a53ea8cfcb2d94fbdee07884d8050.zip | |
pre-empt both user and kernel, in clock interrupt
usertest.c tests pre-emption
kill()
Diffstat (limited to 'defs.h')
| -rw-r--r-- | defs.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -17,6 +17,8 @@ void swtch(void); void sleep(void *); void wakeup(void *); void scheduler(void); +void proc_exit(void); +void yield(void); // swtch.S struct jmpbuf; |
