Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
zhangtu
openairinterface5G
Commits
2e5f0a07
Commit
2e5f0a07
authored
Oct 24, 2017
by
Cedric Roux
Browse files
minor: fix tracing utility (no malloc for it takes too long at startup)
parent
4b9f58c0
Changes
1
Hide whitespace changes
Inline
Side-by-side
openair2/PHY_INTERFACE/IF_Module.c
View file @
2e5f0a07
...
...
@@ -156,6 +156,9 @@ void handle_ulsch(UL_IND_t *UL_info) {
#define C do { size = 0; put(0); } while (0)
#define A(...) do { char t[4096]; sprintf(t, __VA_ARGS__); append_string(t); } while (0)
#if 0
/* eats lots of ms at startup, disrupts realtime */
static char *s;
static int size;
static int maxsize;
...
...
@@ -169,6 +172,22 @@ static void put(char x)
s[size++] = x;
}
#else
/* eats nothing at startup, but fixed size */
#define SMAX 65536
static
char
s
[
SMAX
];
static
int
size
;
static
int
maxsize
=
SMAX
;
static
void
put
(
char
x
)
{
if
(
size
==
maxsize
)
{
printf
(
"incrase SMAX
\n
"
);
exit
(
1
);
}
s
[
size
++
]
=
x
;
}
#endif
static
void
append_string
(
char
*
t
)
{
size
--
;
...
...
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