classPath must be the classpath of this app_process process, or
NULL.
- emacsService must be the EmacsService singleton, or NULL. */
+ emacsService must be the EmacsService singleton, or NULL.
+
+ apiLevel is the version of Android being run. */
public static native void setEmacsParams (AssetManager assetManager,
String filesDir,
String libDir,
float pixelDensityY,
float scaledDensity,
String classPath,
- EmacsService emacsService);
+ EmacsService emacsService,
+ int apiLevel);
/* Initialize Emacs with the argument array ARGV. Each argument
must contain a NULL terminated string, or else the behavior is
undefined.
DUMPFILE is the dump file to use, or NULL if Emacs is to load
- loadup.el itself.
-
- APILEVEL is the version of Android being used. */
- public static native void initEmacs (String argv[], String dumpFile,
- int apiLevel);
+ loadup.el itself. */
+ public static native void initEmacs (String argv[], String dumpFile);
/* Abort and generate a native core dump. */
public static native void emacsAbort ();
EmacsNative.setEmacsParams (assets, filesDir,
libDir, cacheDir, 0.0f,
- 0.0f, 0.0f, null, null);
+ 0.0f, 0.0f, null, null,
+ Build.VERSION.SDK_INT);
/* Now find the dump file that Emacs should use, if it has already
been dumped. */
EmacsApplication.findDumpFile (context);
/* Start Emacs. */
- EmacsNative.initEmacs (args, EmacsApplication.dumpFileName,
- Build.VERSION.SDK_INT);
+ EmacsNative.initEmacs (args, EmacsApplication.dumpFileName);
}
};
cacheDir, (float) pixelDensityX,
(float) pixelDensityY,
(float) scaledDensity,
- classPath, EmacsService.this);
+ classPath, EmacsService.this,
+ Build.VERSION.SDK_INT);
}
}, extraStartupArgument,
/* If any file needs to be opened, open it now. */
import java.lang.Thread;
import java.util.Arrays;
-import android.os.Build;
import android.util.Log;
public final class EmacsThread extends Thread
/* Run the native code now. */
Log.d (TAG, "run: " + Arrays.toString (args));
- EmacsNative.initEmacs (args, EmacsApplication.dumpFileName,
- Build.VERSION.SDK_INT);
+ EmacsNative.initEmacs (args, EmacsApplication.dumpFileName);
}
};
jfloat pixel_density_y,
jfloat scaled_density,
jobject class_path,
- jobject emacs_service_object)
+ jobject emacs_service_object,
+ jint api_level)
{
JNI_STACK_ALIGNMENT_PROLOGUE;
pthread_t thread;
const char *java_string;
+ /* Set the Android API level early, as it is used by
+ `android_vfs_init'. */
+ android_api_level = api_level;
+
/* This function should only be called from the main thread. */
android_pixel_density_x = pixel_density_x;
JNIEXPORT void JNICALL
NATIVE_NAME (initEmacs) (JNIEnv *env, jobject object, jarray argv,
- jobject dump_file_object, jint api_level)
+ jobject dump_file_object)
{
/* android_emacs_init is not main, so GCC is not nice enough to add
the stack alignment prologue.
const char *c_argument;
char *dump_file;
- /* Set the Android API level. */
- android_api_level = api_level;
-
android_java_env = env;
nelements = (*env)->GetArrayLength (env, argv);
/* Semaphore posted upon the completion of an SAF operation. */
static sem_t saf_completion_sem;
+#ifdef __clang__
+#pragma clang diagnostic push
+#pragma clang diagnostic ignored "-Wmissing-prototypes"
+#else /* GNUC */
+#pragma GCC diagnostic push
+#pragma GCC diagnostic ignored "-Wmissing-prototypes"
+#endif /* __clang__ */
+
JNIEXPORT jint JNICALL
NATIVE_NAME (safSyncAndReadInput) (JNIEnv *env, jobject object)
{
sem_post (&saf_completion_sem);
}
+#ifdef __clang__
+#pragma clang diagnostic pop
+#else /* GNUC */
+#pragma GCC diagnostic pop
+#endif /* __clang__ */
+
\f
/* Root vnode. This vnode represents the root inode, and is a regular