* Win32 doesn't do sigaltstack, and thus has no SIGSTKSZ.
static int
altstack_pointer_p (void *p) {
+#ifndef LISP_FEATURE_WIN32
char* stack_start = ((char *) arch_os_get_current_thread())
+ dynamic_values_bytes;
char* stack_end = stack_start + 32*SIGSTKSZ;
return (p > stack_start && p <= stack_end);
+#else
+ /* Win32 doesn't do altstack */
+ return 0;
+#endif
}
static int
;;; checkins which aren't released. (And occasionally for internal
;;; versions, especially for internal versions off the main CVS
;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".)
-"1.0.4.97"
+"1.0.4.98"