diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2017-03-10 22:12:05 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2017-03-11 11:14:06 -0500 |
commit | 944d1768568239c4d9901726ff133bd43f56863e (patch) | |
tree | 9b7d89cef47ab31e23507e8db9b2226632ee5928 /docs/Code_Overview.md | |
parent | cdd5a772e8b8ef34de529207252c8130d62a87a2 (diff) | |
download | kutter-944d1768568239c4d9901726ff133bd43f56863e.tar.gz kutter-944d1768568239c4d9901726ff133bd43f56863e.tar.xz kutter-944d1768568239c4d9901726ff133bd43f56863e.zip |
sched: Rename sched_timer() to sched_add_timer()
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'docs/Code_Overview.md')
-rw-r--r-- | docs/Code_Overview.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/Code_Overview.md b/docs/Code_Overview.md index 207b37f4..ee640457 100644 --- a/docs/Code_Overview.md +++ b/docs/Code_Overview.md @@ -54,7 +54,7 @@ functions should never pause, delay, or do any work that lasts more than a few micro-seconds. These functions schedule work at specific times by scheduling timers. -Timer functions are scheduled by calling sched_timer() (located in +Timer functions are scheduled by calling sched_add_timer() (located in **src/sched.c**). The scheduler code will arrange for the given function to be called at the requested clock time. Timer interrupts are initially handled in an architecture specific interrupt handler |