Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG-RAN
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
spbro
OpenXG-RAN
Commits
426ded6e
Commit
426ded6e
authored
Mar 30, 2022
by
Raphael Defosseux
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix(build): fix warnings on circular dependency
Signed-off-by:
Raphael Defosseux
<
raphael.defosseux@eurecom.fr
>
parent
69fcab92
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
2 deletions
+12
-2
openair2/PHY_INTERFACE/queue_t.h
openair2/PHY_INTERFACE/queue_t.h
+4
-1
openair2/RRC/LTE/MESSAGES/asn1_msg.h
openair2/RRC/LTE/MESSAGES/asn1_msg.h
+5
-0
openair2/RRC/NR/MESSAGES/asn1_msg.h
openair2/RRC/NR/MESSAGES/asn1_msg.h
+3
-1
No files found.
openair2/PHY_INTERFACE/queue_t.h
View file @
426ded6e
...
...
@@ -24,7 +24,8 @@
}
*/
#pragma once
#ifndef __OPENAIR2_PHY_INTERFACE_QUEUE_T__H__
#define __OPENAIR2_PHY_INTERFACE_QUEUE_T__H__
#include <stdbool.h>
#include <stdint.h>
...
...
@@ -62,3 +63,5 @@ typedef bool queue_matcher_t(void *wanted, void *candidate);
Look only at the last `max_depth` items on the queue, at most.
Returns the candidate item, or NULL if none matches */
void
*
unqueue_matching
(
queue_t
*
q
,
size_t
max_depth
,
queue_matcher_t
*
matcher
,
void
*
wanted
);
#endif
/* __OPENAIR2_PHY_INTERFACE_QUEUE_T__H__ */
openair2/RRC/LTE/MESSAGES/asn1_msg.h
View file @
426ded6e
...
...
@@ -28,6 +28,9 @@
* \email: raymond.knopp@eurecom.fr and navid.nikaein@eurecom.fr
*/
#ifndef __RRC_LTE_MESSAGES_ASN1_MSG__H__
#define __RRC_LTE_MESSAGES_ASN1_MSG__H__
#include <stdio.h>
#include <sys/types.h>
#include <stdlib.h>
/* for atoi(3) */
...
...
@@ -405,3 +408,5 @@ uint8_t do_SecurityModeCommand(
const
uint8_t
Transaction_id
,
const
uint8_t
cipheringAlgorithm
,
const
uint8_t
integrityProtAlgorithm
);
#endif
/* __RRC_LTE_MESSAGES_ASN1_MSG__H__ */
openair2/RRC/NR/MESSAGES/asn1_msg.h
View file @
426ded6e
...
...
@@ -28,7 +28,8 @@
* \email: raymond.knopp@eurecom.fr and navid.nikaein@eurecom.fr, kroempa@gmail.com
*/
#pragma once
#ifndef __RRC_NR_MESSAGES_ASN1_MSG__H__
#define __RRC_NR_MESSAGES_ASN1_MSG__H__
#include <stdio.h>
#include <sys/types.h>
...
...
@@ -207,3 +208,4 @@ do_RRCReestablishmentComplete(
uint8_t
*
buffer
,
size_t
buffer_size
,
int64_t
rrc_TransactionIdentifier
);
#endif
/* __RRC_NR_MESSAGES_ASN1_MSG__H__ */
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment