Changeset 7912
- Timestamp:
- Dec 14, 2007, 4:07:47 PM (17 years ago)
- Location:
- branches/event-ide/ccl
- Files:
-
- 3 edited
-
level-1/l1-readloop.lisp (modified) (1 diff)
-
lisp-kernel/lisp-debug.c (modified) (1 diff)
-
lisp-kernel/pmcl-kernel.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/event-ide/ccl/level-1/l1-readloop.lisp
r7699 r7912 124 124 125 125 126 (def global*quitting* nil)126 (defloadvar *quitting* nil) 127 127 128 128 -
branches/event-ide/ccl/lisp-kernel/lisp-debug.c
r7779 r7912 866 866 fprintf(stderr, "Exception occurred while executing foreign code\n"); 867 867 } 868 869 868 if (lisp_global(BATCH_FLAG)) { 870 869 abort(); 871 870 } 871 #ifdef DARWIN 872 #ifdef X8664 873 if (xp) { 874 extern void *_sigtramp(); 875 extern int os_major_version; 876 877 if (xpPC(xp) == (natural)_sigtramp) { 878 xp = (ExceptionInformation *) xpGPR(xp,os_major_version < 9 ? REG_RSI :REG_RCX); 879 fprintf(stderr, "Exception raised at _sigtramp; using context passed to _sigtramp. Raw register values (R) may be more interesting then lisp values or lisp backtrace\n"); 880 } 881 } 882 #endif 883 #endif 884 885 872 886 if (xp) { 873 887 if (why > debug_entry_exception) { -
branches/event-ide/ccl/lisp-kernel/pmcl-kernel.c
r7137 r7912 1286 1286 #endif 1287 1287 1288 int 1289 os_major_version = 0; 1290 1288 1291 void 1289 1292 check_os_version(char *progname) … … 1296 1299 exit(1); 1297 1300 } 1301 sscanf(uts.release,"%d",&os_major_version); 1302 1298 1303 #ifdef PPC 1299 1304 #ifdef DARWIN
Note:
See TracChangeset
for help on using the changeset viewer.
