Changes of Revision 118

libosmocore.spec Changed
x
 
1
@@ -14,13 +14,13 @@
2
 
3
 Name:           libosmocore
4
 Requires: osmocom-master
5
-Version: 1.8.0.88.5e3a
6
+Version: 1.8.0.89.8969
7
 Release:        0
8
 Summary:        The Open Source Mobile Communications Core Library
9
 License:        GPL-2.0-only AND GPL-2.0-or-later AND LGPL-2.1-or-later AND AGPL-3.0-or-later
10
 Group:          Productivity/Telephony/Utilities
11
 Url:            https://osmocom.org/projects/libosmocore/wiki/Libosmocore
12
-Source: libosmocore_1.8.0.88.5e3a.tar.xz
13
+Source: libosmocore_1.8.0.89.8969.tar.xz
14
 Source1: rpmlintrc
15
 BuildRequires:  automake >= 1.6
16
 BuildRequires:  libtool >= 2
17
commit_5e3aaf9f0db220d9e730c4317869e264cac52f24.txt Deleted
commit_8969298a7755db2df4d3f824ca82f1c31d65380a.txt Added
libosmocore_1.8.0.88.5e3a.dsc -> libosmocore_1.8.0.89.8969.dsc Changed
22
 
1
@@ -2,7 +2,7 @@
2
 Source: libosmocore
3
 Binary: libosmocore, libosmocodec0, libosmocodec-doc, libosmocoding0, libosmocoding-doc, libosmocore20, libosmocore-doc, libosmogb14, libosmogb-doc, libosmogsm18, libosmogsm-doc, libosmoisdn0, libosmoisdn-doc, libosmovty9, libosmovty-doc, libosmoctrl0, libosmoctrl-doc, libosmosim2, libosmosim-doc, libosmousb0, libosmousb-doc, libosmocore-dev, libosmocore-utils, libosmocore-dbg
4
 Architecture: any all
5
-Version: 1.8.0.88.5e3a
6
+Version: 1.8.0.89.8969
7
 Maintainer: Osmocom team <openbsc@lists.osmocom.org>
8
 Homepage: https://projects.osmocom.org/projects/libosmocore
9
 Standards-Version: 3.9.8
10
@@ -35,8 +35,8 @@
11
  libosmovty-doc deb doc optional arch=all
12
  libosmovty9 deb libs optional arch=any
13
 Checksums-Sha1:
14
- f98ac39d0121f726df4a58abb8f4e4b6989ac565 1032936 libosmocore_1.8.0.88.5e3a.tar.xz
15
+ 0894d61ba6ec0e50ca0d16e8813265db14838992 1032856 libosmocore_1.8.0.89.8969.tar.xz
16
 Checksums-Sha256:
17
- 92071e22e03c1a15611db50e6680df44f7424fa3fb7270c0eab41b6d848f388c 1032936 libosmocore_1.8.0.88.5e3a.tar.xz
18
+ 2c03faf0b0f89fb929bd1a5fc0d644a7fb6a0f0b78ff937c04bf429de1a533a1 1032856 libosmocore_1.8.0.89.8969.tar.xz
19
 Files:
20
- c447fead13e30e399a60dcef74bb3000 1032936 libosmocore_1.8.0.88.5e3a.tar.xz
21
+ b132f04cdc2f88bbb8076a777daee107 1032856 libosmocore_1.8.0.89.8969.tar.xz
22
libosmocore_1.8.0.88.5e3a.tar.xz/.tarball-version -> libosmocore_1.8.0.89.8969.tar.xz/.tarball-version Changed
4
 
1
@@ -1 +1 @@
2
-1.8.0.88-5e3a
3
+1.8.0.89-8969
4
libosmocore_1.8.0.88.5e3a.tar.xz/debian/changelog -> libosmocore_1.8.0.89.8969.tar.xz/debian/changelog Changed
12
 
1
@@ -1,8 +1,8 @@
2
-libosmocore (1.8.0.88.5e3a) unstable; urgency=medium
3
+libosmocore (1.8.0.89.8969) unstable; urgency=medium
4
 
5
   * Automatically generated changelog entry for building the Osmocom master feed
6
 
7
- -- Osmocom OBS scripts <info@osmocom.org>  Fri, 24 Mar 2023 13:12:27 +0000
8
+ -- Osmocom OBS scripts <info@osmocom.org>  Fri, 24 Mar 2023 20:30:37 +0000
9
 
10
 libosmocore (1.8.0) unstable; urgency=medium
11
 
12
libosmocore_1.8.0.88.5e3a.tar.xz/include/osmocom/core/rate_ctr.h -> libosmocore_1.8.0.89.8969.tar.xz/include/osmocom/core/rate_ctr.h Changed
17
 
1
@@ -86,6 +86,15 @@
2
  *  \param inc quantity to increment \a ctr by */
3
 void rate_ctr_add(struct rate_ctr *ctr, int inc);
4
 
5
+/*! Increment the counter by \a inc
6
+ *  \param ctrg \ref rate_ctr_group of counter
7
+ *  \param idx index into \a ctrg counter group
8
+ *  \param inc quantity to increment \a ctr by */
9
+static inline void rate_ctr_add2(struct rate_ctr_group *ctrg, unsigned int idx, int inc)
10
+{
11
+   rate_ctr_add(rate_ctr_group_get_ctr(ctrg, idx), inc);
12
+}
13
+
14
 /*! Increment the counter by 1
15
  *  \param ctr \ref rate_ctr to increment */
16
 static inline void rate_ctr_inc(struct rate_ctr *ctr)
17