unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
* Move initialization to compile time
@ 2012-07-15 15:05 Eli Zaretskii
  2012-07-15 16:02 ` Andreas Schwab
  0 siblings, 1 reply; 5+ messages in thread
From: Eli Zaretskii @ 2012-07-15 15:05 UTC (permalink / raw)
  To: Dmitry Antipov; +Cc: emacs-devel

Revision 109096 on the trunk moved some initializations from startup
(in temacs) to compile time.  Example:

  @@ -1481,7 +1476,7 @@
   /* Index in interval_block above of the next unused interval
      structure.  */

  -static int interval_block_index;
  +static int interval_block_index = INTERVAL_BLOCK_SIZE;

   /* Number of free and live intervals.  */

  @@ -1491,18 +1486,6 @@

   static INTERVAL interval_free_list;

  -
  -/* Initialize interval allocation.  */
  -
  -static void
  -init_intervals (void)
  -{
  -  interval_block = NULL;
  -  interval_block_index = INTERVAL_BLOCK_SIZE;
  -  interval_free_list = 0;
  -}
  -
  -
   /* Return a new interval.  */

AFAIK, this moves interval_block_index from the .bss section to .data
section.  If I'm right, then perhaps such changes should be discussed
before they are committed.



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

end of thread, other threads:[~2012-07-15 16:51 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-07-15 15:05 Move initialization to compile time Eli Zaretskii
2012-07-15 16:02 ` Andreas Schwab
2012-07-15 16:11   ` Eli Zaretskii
2012-07-15 16:48     ` Paul Eggert
2012-07-15 16:51     ` Andreas Schwab

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).