Change in libosmocore[master]: osmo_timer_pending: Make arg const

This is merely a historical archive of years 2008-2021, before the migration to mailman3.

A maintained and still updated list archive can be found at https://lists.osmocom.org/hyperkitty/list/gerrit-log@lists.osmocom.org/.

pespin gerrit-no-reply at lists.osmocom.org
Thu Apr 29 14:37:56 UTC 2021


pespin has uploaded this change for review. ( https://gerrit.osmocom.org/c/libosmocore/+/23978 )


Change subject: osmo_timer_pending: Make arg const
......................................................................

osmo_timer_pending: Make arg const

Change-Id: I250c25c3ac61ac364335f81d8ba50cb32fd6976e
---
M include/osmocom/core/timer.h
M src/timer.c
2 files changed, 2 insertions(+), 2 deletions(-)



  git pull ssh://gerrit.osmocom.org:29418/libosmocore refs/changes/78/23978/1

diff --git a/include/osmocom/core/timer.h b/include/osmocom/core/timer.h
index 6ffc3b1..61d20e2 100644
--- a/include/osmocom/core/timer.h
+++ b/include/osmocom/core/timer.h
@@ -75,7 +75,7 @@
 
 void osmo_timer_del(struct osmo_timer_list *timer);
 
-int osmo_timer_pending(struct osmo_timer_list *timer);
+int osmo_timer_pending(const struct osmo_timer_list *timer);
 
 int osmo_timer_remaining(const struct osmo_timer_list *timer,
 			 const struct timeval *now,
diff --git a/src/timer.c b/src/timer.c
index bcd9f5b..ed5a610 100644
--- a/src/timer.c
+++ b/src/timer.c
@@ -135,7 +135,7 @@
  * This function can be used to determine whether a given timer
  * has alredy expired (returns 0) or is still pending (returns 1)
  */
-int osmo_timer_pending(struct osmo_timer_list *timer)
+int osmo_timer_pending(const struct osmo_timer_list *timer)
 {
 	return timer->active;
 }

-- 
To view, visit https://gerrit.osmocom.org/c/libosmocore/+/23978
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings

Gerrit-Project: libosmocore
Gerrit-Branch: master
Gerrit-Change-Id: I250c25c3ac61ac364335f81d8ba50cb32fd6976e
Gerrit-Change-Number: 23978
Gerrit-PatchSet: 1
Gerrit-Owner: pespin <pespin at sysmocom.de>
Gerrit-MessageType: newchange
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.osmocom.org/pipermail/gerrit-log/attachments/20210429/e537d6af/attachment.htm>


More information about the gerrit-log mailing list