]> git.eshelyaron.com Git - emacs.git/commitdiff
Simplify get_boot_sec
authorPaul Eggert <eggert@cs.ucla.edu>
Tue, 15 Aug 2023 22:55:08 +0000 (15:55 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Tue, 15 Aug 2023 22:55:40 +0000 (15:55 -0700)
* src/filelock.c (get_boot_sec):
Simplify by removing a special case for MS-DOS.
* src/msdos.c (get_boot_time): New dummy that always fails.

src/filelock.c
src/msdos.c

index f3075b93322bfa46c8917260dbfaaba3e979e0df..c2b306ab47dff7713ac2560c5d244977de69dd00 100644 (file)
@@ -118,16 +118,10 @@ get_boot_sec (void)
   if (will_dump_p ())
     return 0;
 
-#ifndef MSDOS
-  {
-    struct timespec boot_time;
-    boot_time.tv_sec = 0;
-    get_boot_time (&boot_time);
-    return boot_time.tv_sec;
-  }
-#else /* MSDOS */
-  return 0;
-#endif /* MSDOS */
+  struct timespec boot_time;
+  boot_time.tv_sec = 0;
+  get_boot_time (&boot_time);
+  return boot_time.tv_sec;
 }
 \f
 /* An arbitrary limit on lock contents length.  8 K should be plenty
index 1b7f2d4ae21d74ca0440a22ccc8cd64840ea2ed4..20af5353e70eee98d0ce0fcd233fb0f40ab241e5 100644 (file)
@@ -4286,6 +4286,12 @@ init_gettimeofday (void)
 }
 #endif
 
+int
+get_boot_time (struct timespec *p_boot_time)
+{
+  return -1;
+}
+
 static void
 msdos_abort (void)
 {