Changeset 14346
- Timestamp:
- Oct 8, 2010, 1:02:04 PM (14 years ago)
- File:
-
- 1 edited
-
trunk/source/lisp-kernel/lisp-debug.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/source/lisp-kernel/lisp-debug.c
r14295 r14346 46 46 } debug_command_return; 47 47 48 #ifdef SVN_REVISION 49 #define xstr(s) str(s) 50 #define str(s) #s 51 char *kernel_svn_revision = xstr(SVN_REVISION); 52 #undef xstr 53 #undef str 54 #else 55 char *kernel_svn_revision = "unknown"; 56 #endif 48 57 49 58 Boolean … … 855 864 856 865 debug_command_return 866 debug_show_lisp_version(ExceptionInformation *xp, siginfo_t *info, int arg) 867 { 868 extern void *plsym(ExceptionInformation *,char*); 869 870 fprintf(dbgout, "Lisp kernel svn revision: %s\n", kernel_svn_revision); 871 plsym(xp, "*OPENMCL-VERSION*"); 872 return debug_continue; 873 } 874 875 debug_command_return 857 876 debug_thread_info(ExceptionInformation *xp, siginfo_t *info, int arg) 858 877 { … … 1259 1278 NULL, 1260 1279 'K'}, 1280 {debug_show_lisp_version, 1281 "Show Subversion revision information", 1282 0, 1283 NULL, 1284 'V'}, 1261 1285 {debug_help, 1262 1286 "Show this help",
Note:
See TracChangeset
for help on using the changeset viewer.
