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
常顺宇
OpenXG-RAN
Commits
88c44ef9
Commit
88c44ef9
authored
Jun 05, 2016
by
Cedric Roux
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rename store_config_file load_config_file
parent
18c2bdda
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
5 additions
and
5 deletions
+5
-5
common/utils/T/tracer/config.c
common/utils/T/tracer/config.c
+1
-1
common/utils/T/tracer/config.h
common/utils/T/tracer/config.h
+1
-1
common/utils/T/tracer/enb.c
common/utils/T/tracer/enb.c
+1
-1
common/utils/T/tracer/textlog.c
common/utils/T/tracer/textlog.c
+1
-1
common/utils/T/tracer/vcd.c
common/utils/T/tracer/vcd.c
+1
-1
No files found.
common/utils/T/tracer/config.c
View file @
88c44ef9
...
@@ -33,7 +33,7 @@ void append_received_config_chunk(char *buf, int length)
...
@@ -33,7 +33,7 @@ void append_received_config_chunk(char *buf, int length)
}
}
}
}
void
store
_config_file
(
char
*
filename
)
void
load
_config_file
(
char
*
filename
)
{
{
int
c
;
int
c
;
FILE
*
f
=
fopen
(
filename
,
"r"
);
FILE
*
f
=
fopen
(
filename
,
"r"
);
...
...
common/utils/T/tracer/config.h
View file @
88c44ef9
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
#define _CONFIG_H_
#define _CONFIG_H_
void
append_received_config_chunk
(
char
*
buf
,
int
length
);
void
append_received_config_chunk
(
char
*
buf
,
int
length
);
void
store
_config_file
(
char
*
filename
);
void
load
_config_file
(
char
*
filename
);
void
verify_config
(
void
);
void
verify_config
(
void
);
#endif
/* _CONFIG_H_ */
#endif
/* _CONFIG_H_ */
common/utils/T/tracer/enb.c
View file @
88c44ef9
...
@@ -279,7 +279,7 @@ int main(int n, char **v)
...
@@ -279,7 +279,7 @@ int main(int n, char **v)
database
=
parse_database
(
database_filename
);
database
=
parse_database
(
database_filename
);
store
_config_file
(
database_filename
);
load
_config_file
(
database_filename
);
number_of_events
=
number_of_ids
(
database
);
number_of_events
=
number_of_ids
(
database
);
is_on
=
calloc
(
number_of_events
,
sizeof
(
int
));
is_on
=
calloc
(
number_of_events
,
sizeof
(
int
));
...
...
common/utils/T/tracer/textlog.c
View file @
88c44ef9
...
@@ -130,7 +130,7 @@ int main(int n, char **v)
...
@@ -130,7 +130,7 @@ int main(int n, char **v)
database
=
parse_database
(
database_filename
);
database
=
parse_database
(
database_filename
);
store
_config_file
(
database_filename
);
load
_config_file
(
database_filename
);
number_of_events
=
number_of_ids
(
database
);
number_of_events
=
number_of_ids
(
database
);
is_on
=
calloc
(
number_of_events
,
sizeof
(
int
));
is_on
=
calloc
(
number_of_events
,
sizeof
(
int
));
...
...
common/utils/T/tracer/vcd.c
View file @
88c44ef9
...
@@ -162,7 +162,7 @@ int main(int n, char **v)
...
@@ -162,7 +162,7 @@ int main(int n, char **v)
database
=
parse_database
(
database_filename
);
database
=
parse_database
(
database_filename
);
store
_config_file
(
database_filename
);
load
_config_file
(
database_filename
);
number_of_events
=
number_of_ids
(
database
);
number_of_events
=
number_of_ids
(
database
);
is_on
=
calloc
(
number_of_events
,
sizeof
(
int
));
is_on
=
calloc
(
number_of_events
,
sizeof
(
int
));
...
...
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