unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
* Re: [Emacs-diffs] master 284f635: memory_full_cons_threshold is a constant
       [not found] ` <20190302211434.9F9B6203C0@vcs0.savannah.gnu.org>
@ 2019-03-03  2:06   ` Basil L. Contovounesios
  2019-03-03  7:03     ` Paul Eggert
  0 siblings, 1 reply; 2+ messages in thread
From: Basil L. Contovounesios @ 2019-03-03  2:06 UTC (permalink / raw)
  To: emacs-devel; +Cc: Paul Eggert

eggert@cs.ucla.edu (Paul Eggert) writes:

> branch: master
> commit 284f635da833d2dbf0102af3442197b46adf78c5
> Author: Paul Eggert <eggert@cs.ucla.edu>
> Commit: Paul Eggert <eggert@cs.ucla.edu>
>
>     memory_full_cons_threshold is a constant
>     
>     * src/alloc.c (memory_full_cons_threshold): Now const.
>     (memory_full): Omit no-longer-needed initialization.
> ---
>  src/alloc.c | 12 ++++--------
>  src/lisp.h  |  2 +-
>  2 files changed, 5 insertions(+), 9 deletions(-)
>
> diff --git a/src/alloc.c b/src/alloc.c
> index 452d31f..9b3dc4b 100644
> --- a/src/alloc.c
> +++ b/src/alloc.c
> @@ -234,7 +234,7 @@ byte_ct gc_relative_threshold;
>  /* Minimum number of bytes of consing since GC before next GC,
>     when memory is full.  */
>  
> -byte_ct memory_full_cons_threshold;
> +byte_ct const memory_full_cons_threshold = sizeof (struct cons_block);

struct cons_block doesn't seem to be defined yet, because I get the
following error with gcc 8.2.0:

  CC       alloc.o
alloc.c:237:52: error: invalid application of ‘sizeof’ to incomplete type ‘struct cons_block’
 byte_ct const memory_full_cons_threshold = sizeof (struct cons_block);

-- 
Basil



^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [Emacs-diffs] master 284f635: memory_full_cons_threshold is a constant
  2019-03-03  2:06   ` [Emacs-diffs] master 284f635: memory_full_cons_threshold is a constant Basil L. Contovounesios
@ 2019-03-03  7:03     ` Paul Eggert
  0 siblings, 0 replies; 2+ messages in thread
From: Paul Eggert @ 2019-03-03  7:03 UTC (permalink / raw)
  To: Basil L. Contovounesios; +Cc: emacs-devel

Basil L. Contovounesios wrote:
> struct cons_block doesn't seem to be defined yet

Thanks for reporting that. Evidently I installed the wrong version. I installed 
a patch.



^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2019-03-03  7:03 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <20190302211432.19529.56286@vcs0.savannah.gnu.org>
     [not found] ` <20190302211434.9F9B6203C0@vcs0.savannah.gnu.org>
2019-03-03  2:06   ` [Emacs-diffs] master 284f635: memory_full_cons_threshold is a constant Basil L. Contovounesios
2019-03-03  7:03     ` Paul Eggert

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).