summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/osmocom/core/timer.h8
-rw-r--r--include/osmocom/vty/ports.h2
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