about summary refs log tree commit diff stats
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/USAGE.md7
-rw-r--r--docs/box64.pod8
-rw-r--r--docs/gen/usage.json18
3 files changed, 33 insertions, 0 deletions
diff --git a/docs/USAGE.md b/docs/USAGE.md
index f8caf164..01653007 100644
--- a/docs/USAGE.md
+++ b/docs/USAGE.md
@@ -329,6 +329,13 @@ Force the use of float/double for x87 emulation. Availble in WowBox64.
  * 1: Only use Double for x87 emulation. 
  * 2: Check Precision Control low precision on x87 emulation. 
 
+### BOX64_DYNAREC_INTERP_SIGNAL
+
+Allow the use of Dynarec in Signal Handlers. Availble in WowBox64.
+
+ * 0: Allow the use of Dynarec in signal handlers. [Default]
+ * 1: Only use the Interpreter for signal handlers (as it was in v0.3.8 and earlier). 
+
 ### BOX64_EXIT
 
 Just exit, do not try to run the program.
diff --git a/docs/box64.pod b/docs/box64.pod
index f20e9f9d..06cdc8e2 100644
--- a/docs/box64.pod
+++ b/docs/box64.pod
@@ -399,6 +399,14 @@ Force the use of float/double for x87 emulation. Availble in WowBox64.
  * 2 : Check Precision Control low precision on x87 emulation. 
 
 
+=item B<BOX64_DYNAREC_INTERP_SIGNAL> =I<0|1>
+
+Allow the use of Dynarec in Signal Handlers. Availble in WowBox64.
+
+ * 0 : Allow the use of Dynarec in signal handlers. [Default]
+ * 1 : Only use the Interpreter for signal handlers (as it was in v0.3.8 and earlier). 
+
+
 =item B<BOX64_DYNACACHE> =I<0|1|2>
 
 Enable/disable the Dynamic Recompiler Cache (a.k.a DynaCache). This option defaults to 2 (to read cache if present but not generate any). DynaCache write file to home folder by default, and can grow without limit.
diff --git a/docs/gen/usage.json b/docs/gen/usage.json
index f96bb1c5..91e465cc 100644
--- a/docs/gen/usage.json
+++ b/docs/gen/usage.json
@@ -848,6 +848,24 @@
     ]
   },
   {
+    "name": "BOX64_DYNAREC_INTERP_SIGNAL",
+    "description": "Allow the use of Dynarec in Signal Handlers.",
+    "category": "Compatibility",
+    "wine": true,
+    "options": [
+      {
+        "key": "0",
+        "description": "Allow the use of Dynarec in signal handlers.",
+        "default": true
+      },
+      {
+        "key": "1",
+        "description": "Only use the Interpreter for signal handlers (as it was in v0.3.8 and earlier).",
+        "default": false
+      }
+    ]
+  },
+  {
     "name": "BOX64_DYNACACHE",
     "description": "Enable/disable the Dynamic Recompiler Cache (a.k.a DynaCache). This option defaults to 2 (to read cache if present but not generate any). DynaCache write file to home folder by default, and can grow without limit.",
     "category": "Performance",