aboutsummaryrefslogtreecommitdiffstats
path: root/src/pdch.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/pdch.h')
-rw-r--r--src/pdch.h11
1 files changed, 4 insertions, 7 deletions
diff --git a/src/pdch.h b/src/pdch.h
index 94056069..2ca37212 100644
--- a/src/pdch.h
+++ b/src/pdch.h
@@ -13,10 +13,6 @@
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#pragma once
@@ -194,11 +190,12 @@ void pdch_init(struct gprs_rlcmac_pdch *pdch, struct gprs_rlcmac_trx *trx, uint8
void pdch_free_all_tbf(struct gprs_rlcmac_pdch *pdch);
void pdch_disable(struct gprs_rlcmac_pdch *pdch);
bool pdch_is_enabled(const struct gprs_rlcmac_pdch *pdch);
+bool pdch_is_full(const struct gprs_rlcmac_pdch *pdch);
+const char *pdch_name(const struct gprs_rlcmac_pdch *pdch);
+char *pdch_name_buf(const struct gprs_rlcmac_pdch *pdch, char *buf, size_t buf_size);
#ifdef __cplusplus
}
#endif
#define LOGPDCH(pdch, category, level, fmt, args...) \
- LOGP(category, level, "PDCH(bts=%" PRIu8 ",trx=%" PRIu8 ",ts=%" PRIu8 ") " fmt, \
- (pdch)->trx->bts->nr, (pdch)->trx->trx_no, (pdch)->ts_no, \
- ## args)
+ LOGP(category, level, "%s " fmt, pdch_name(pdch), ## args)