Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG UE
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
Michael Black
OpenXG UE
Commits
9235a522
Commit
9235a522
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
888ff183
Changes
5
Show 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 @
9235a522
...
...
@@ -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
;
FILE
*
f
=
fopen
(
filename
,
"r"
);
...
...
common/utils/T/tracer/config.h
View file @
9235a522
...
...
@@ -2,7 +2,7 @@
#define _CONFIG_H_
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
);
#endif
/* _CONFIG_H_ */
common/utils/T/tracer/enb.c
View file @
9235a522
...
...
@@ -279,7 +279,7 @@ int main(int n, char **v)
database
=
parse_database
(
database_filename
);
store
_config_file
(
database_filename
);
load
_config_file
(
database_filename
);
number_of_events
=
number_of_ids
(
database
);
is_on
=
calloc
(
number_of_events
,
sizeof
(
int
));
...
...
common/utils/T/tracer/textlog.c
View file @
9235a522
...
...
@@ -130,7 +130,7 @@ int main(int n, char **v)
database
=
parse_database
(
database_filename
);
store
_config_file
(
database_filename
);
load
_config_file
(
database_filename
);
number_of_events
=
number_of_ids
(
database
);
is_on
=
calloc
(
number_of_events
,
sizeof
(
int
));
...
...
common/utils/T/tracer/vcd.c
View file @
9235a522
...
...
@@ -162,7 +162,7 @@ int main(int n, char **v)
database
=
parse_database
(
database_filename
);
store
_config_file
(
database_filename
);
load
_config_file
(
database_filename
);
number_of_events
=
number_of_ids
(
database
);
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