]> git.eshelyaron.com Git - emacs.git/commit
Improve boot-time gathering
authorPaul Eggert <eggert@cs.ucla.edu>
Sun, 13 Aug 2023 02:39:11 +0000 (19:39 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Sun, 13 Aug 2023 02:46:12 +0000 (19:46 -0700)
commit5e736ca6ccfa131736ab0b3a298de2cb319e7dfb
tree65b06f7a73dc2a04c60af430bc95102a347979df
parentb35431b218ada2d84eb251d18e5543388b598d80
Improve boot-time gathering

Simplify Emacs proper by using Gnulib’s boot-time module
instead of doing it all by hand.  This should port Emacs
better to obscurish hosts, as Bruno Haible has merged the
best of Emacs’s and Gnulib’s boot-time gathering.
* lib/boot-time-aux.h, lib/boot-time.c, lib/boot-time.h:
* lib/readutmp.h, m4/readutmp.m4: New files, copied from Gnulib.
* admin/merge-gnulib (GNULIB_MODULES): Add boot-time.
* configure.ac: Do not check for utmp.h;
the boot-time module now does this.
(BOOT_TIME_FILE): Remove; no longer used.
* lib/gnulib.mk.in, m4/gnulib-comp.m4: Regenerate.
* src/filelock.c [__FreeBSD__]: Do not include <sys/sysctl.h>.
[HAVE_UTMP_H]: Do not include utmp.h.
Include boot-time instead: boot-time does the work now.
(BOOT_TIME) [HAVE_ANDROID && !ANDROID_STUBIFY]: Don’t undef.
(WTMP_FILE): Don’t define.
(boot_time, boot_time_initialized, get_boot_time_1, get_boot_time):
Remove.
(get_boot_sec): New function that simply calls Gnulib get_boot_time.
(lock_file_1, current_lock_owner): Use get_boot_sec instead
of get_boot_time.
admin/merge-gnulib
configure.ac
lib/boot-time-aux.h [new file with mode: 0644]
lib/boot-time.c [new file with mode: 0644]
lib/boot-time.h [new file with mode: 0644]
lib/gnulib.mk.in
lib/readutmp.h [new file with mode: 0644]
m4/gnulib-comp.m4
m4/readutmp.m4 [new file with mode: 0644]
src/filelock.c