Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
mpim-sw
libcdi
Commits
0989c908
Commit
0989c908
authored
Nov 09, 2012
by
Uwe Schulzweida
Browse files
file.c::file_initialize: added support for env GRIB_API_IO_BUFFER_SIZE
parent
1011d94b
Changes
2
Hide whitespace changes
Inline
Side-by-side
ChangeLog
View file @
0989c908
...
...
@@ -2,6 +2,10 @@
* Version 1.5.9 released
2012-11-09 Uwe Schulzweida <Uwe.Schulzweida@zmaw.de>
* file.c::file_initialize: added support for env GRIB_API_IO_BUFFER_SIZE [request: Florian Prill]
2012-11-07 Uwe Schulzweida <Uwe.Schulzweida@zmaw.de>
* gridGenXvals/gridGenYvals: removed changes from 1.5.8 (bug fix)
...
...
src/file.c
View file @
0989c908
...
...
@@ -758,6 +758,11 @@ void file_initialize(void)
value
=
file_getenv
(
"FILE_BUFSIZE"
);
if
(
value
>=
0
)
FileBufferSizeEnv
=
value
;
else
{
value
=
file_getenv
(
"GRIB_API_IO_BUFFER_SIZE"
);
if
(
value
>=
0
)
FileBufferSizeEnv
=
value
;
}
value
=
file_getenv
(
"FILE_TYPE"
);
if
(
value
>
0
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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