Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
7cf94eac
Commit
7cf94eac
authored
Nov 08, 2008
by
Eli Zaretskii
Browse files
(get_lim_data): Fix last change.
parent
5463218c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
4 deletions
+10
-4
src/ChangeLog
src/ChangeLog
+4
-0
src/vm-limit.c
src/vm-limit.c
+6
-4
No files found.
src/ChangeLog
View file @
7cf94eac
2008-11-08 Eli Zaretskii <eliz@gnu.org>
* vm-limit.c (get_lim_data): Fix last change.
2008-11-08 Kenichi Handa <handa@m17n.org>
* character.c (Fget_byte): New function.
...
...
src/vm-limit.c
View file @
7cf94eac
...
...
@@ -129,21 +129,23 @@ get_lim_data ()
available, which causes bogus "past 95% of memory limit"
warnings. Try to overcome that via circumstantial evidence. */
lim1
=
info
.
available_memory
;
lim2
=
info
.
available_physical_pages
*
4096
;
lim2
=
info
.
available_physical_pages
;
/* DPMI Spec: "Fields that are unavailable will hold -1." */
if
((
long
)
lim1
==
-
1L
)
lim1
=
0
;
if
((
long
)
lim2
==
-
1L
)
lim2
=
0
;
else
lim2
*=
4096
;
/* Surely, the available memory is at least what we have physically
available, right? */
if
(
lim1
>
lim2
)
if
(
lim1
>
=
lim2
)
lim_data
=
lim1
;
else
lim_data
=
lim2
;
/* Don't believe they will give us more that 0.5 GB. */
if
(
lim_data
>
512
*
1024
*
1024
)
lim_data
=
512
*
1024
*
1024
;
if
(
lim_data
>
512
U
*
1024
U
*
1024
U
)
lim_data
=
512
U
*
1024
U
*
1024
U
;
}
#else
/* not MSDOS */
static
void
...
...
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