]> git.eshelyaron.com Git - emacs.git/commitdiff
Initialize signal mask earlier
authorPo Lu <luangruo@yahoo.com>
Sat, 17 Jun 2023 04:07:40 +0000 (12:07 +0800)
committerPo Lu <luangruo@yahoo.com>
Sat, 17 Jun 2023 04:07:40 +0000 (12:07 +0800)
* java/org/gnu/emacs/EmacsService.java (onCreate, run): Don't
initialize signal mask here.
* java/org/gnu/emacs/EmacsApplication.java (onCreate): Do it
here instead.
* src/android.c (JNICALL): Restore previous signal masks.

java/org/gnu/emacs/EmacsApplication.java
java/org/gnu/emacs/EmacsService.java
src/android.c

index d8b77acdf9e4beb69ab0f38364014447e39f96ca..8afa5bcedb4f15baea5dcc2d8411521417651a15 100644 (file)
@@ -78,7 +78,15 @@ public final class EmacsApplication extends Application
   public void
   onCreate ()
   {
+    /* Block signals which don't interest the current thread and its
+       descendants created by the system.  The original signal mask
+       will be restored for the Emacs thread in `initEmacs'.  */
+    EmacsNative.setupSystemThread ();
+
+    /* Locate a suitable dump file.  */
     findDumpFile (this);
+
+    /* Start the rest of the application.  */
     super.onCreate ();
   }
 };
index 2fe4e8c4146a5dd1bc747f1e7270487bb169a179..820befb52d2115ddfeea5bd8d639788bb048930d 100644 (file)
@@ -25,7 +25,6 @@ import java.io.UnsupportedEncodingException;
 
 import java.util.List;
 
-import java.util.concurrent.Semaphore;
 import java.util.concurrent.atomic.AtomicInteger;
 
 import android.graphics.Matrix;
@@ -212,7 +211,6 @@ public final class EmacsService extends Service
     final String filesDir, libDir, cacheDir, classPath;
     final double pixelDensityX;
     final double pixelDensityY;
-    final Semaphore signalSemaphore;
 
     SERVICE = this;
     handler = new Handler (Looper.getMainLooper ());
@@ -222,7 +220,6 @@ public final class EmacsService extends Service
     pixelDensityX = metrics.xdpi;
     pixelDensityY = metrics.ydpi;
     resolver = getContentResolver ();
-    signalSemaphore = new Semaphore (0);
 
     try
       {
@@ -251,33 +248,11 @@ public final class EmacsService extends Service
                                          cacheDir, (float) pixelDensityX,
                                          (float) pixelDensityY,
                                          classPath, EmacsService.this);
-
-             /* Wait for the signal mask to be set up in the UI
-                thread.  */
-
-             while (true)
-               {
-                 try
-                   {
-                     signalSemaphore.acquire ();
-                     break;
-                   }
-                 catch (InterruptedException e)
-                   {
-                     ;;
-                   }
-               }
            }
          }, extraStartupArgument,
          /* If any file needs to be opened, open it now.  */
          EmacsOpenActivity.fileToOpen);
        thread.start ();
-
-       /* Now that the thread has been started, block signals which
-          don't interest the current thread.  */
-
-       EmacsNative.setupSystemThread ();
-       signalSemaphore.release ();
       }
     catch (IOException exception)
       {
index ccc2da95f03474d1a6c3540a9eeee73d9d214749..d6a56dfe0b8f0092233a5c082ed15a37be3dd7c5 100644 (file)
@@ -261,6 +261,14 @@ void *unused_pointer;
 
 #endif /* __i386__ */
 
+/* Whether or not the default signal mask has been changed.  If so,
+   the signal mask must be restored before calling
+   android_emacs_init.  */
+static bool signal_mask_changed_p;
+
+/* The signal mask at the time Emacs was started.  */
+static sigset_t startup_signal_mask;
+
 \f
 
 /* Event handling functions.  Events are stored on a (circular) queue
@@ -2562,7 +2570,15 @@ NATIVE_NAME (initEmacs) (JNIEnv *env, jobject object, jarray argv,
   ANDROID_DELETE_LOCAL_REF (argv);
   ANDROID_DELETE_LOCAL_REF (dump_file_object);
 
+  /* Restore the signal mask at the time of startup if it was changed
+     to block unwanted signals from reaching system threads.  */
+
+  if (signal_mask_changed_p)
+    pthread_sigmask (SIG_SETMASK, &startup_signal_mask, NULL);
+
+  /* Now start Emacs proper.  */
   android_emacs_init (nelements, c_argv, dump_file);
+
   /* android_emacs_init should never return.  */
   emacs_abort ();
 }
@@ -3128,9 +3144,14 @@ NATIVE_NAME (setupSystemThread) (void)
   sigdelset (&sigset, SIGSEGV);
   sigdelset (&sigset, SIGBUS);
 
-  if (pthread_sigmask (SIG_BLOCK, &sigset, NULL))
+  /* Save the signal mask that was previously used.  It will be
+     restored in `initEmacs'.  */
+
+  if (pthread_sigmask (SIG_BLOCK, &sigset, &startup_signal_mask))
     __android_log_print (ANDROID_LOG_WARN, __func__,
                         "pthread_sigmask: %s", strerror (errno));
+  else
+    signal_mask_changed_p = true;
 }
 
 #ifdef __clang__