diff options
author | Neels Hofmeyr <nhofmeyr@sysmocom.de> | 2015-11-02 20:18:11 +0100 |
---|---|---|
committer | Neels Hofmeyr <nhofmeyr@sysmocom.de> | 2015-11-02 20:23:34 +0100 |
commit | 667e83d71eebba70817ab035ef207a52785bc129 (patch) | |
tree | e55d35f34e6a1e2094966a442f60b64ae385bba7 /include | |
parent | d7b0577d7d30139491b5cfeffb467440f9e88818 (diff) |
fix some typos
Sponsored-by: On-Waves ehi
Diffstat (limited to 'include')
-rw-r--r-- | include/osmocom/core/timer.h | 8 | ||||
-rw-r--r-- | include/osmocom/vty/ports.h | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/include/osmocom/core/timer.h b/include/osmocom/core/timer.h index d7343576..6730bfe1 100644 --- a/include/osmocom/core/timer.h +++ b/include/osmocom/core/timer.h @@ -37,16 +37,16 @@ * Timer management: * - Create a struct osmo_timer_list * - Fill out timeout and use add_timer or - * use schedule_timer to schedule a timer in + * use osmo_timer_schedule to schedule a timer in * x seconds and microseconds from now... - * - Use del_timer to remove the timer + * - Use osmo_timer_del to remove the timer * * Internally: * - We hook into select.c to give a timeval of the * nearest timer. On already passed timers we give * it a 0 to immediately fire after the select - * - update_timers will call the callbacks and remove - * the timers. + * - osmo_timers_update will call the callbacks and + * remove the timers. * */ /*! \brief A structure representing a single instance of a timer */ diff --git a/include/osmocom/vty/ports.h b/include/osmocom/vty/ports.h index a58c73b5..f4bc4853 100644 --- a/include/osmocom/vty/ports.h +++ b/include/osmocom/vty/ports.h @@ -11,5 +11,5 @@ #define OSMO_VTY_PORT_SGSN 4245 #define OSMO_VTY_PORT_GBPROXY 4246 #define OSMO_VTY_PORT_BB 4247 -/* 4249-2451 used by control interface */ +/* 4249-4251 used by control interface */ #define OSMO_VTY_PORT_BTSMGR 4252 |