* src/s/sol2-10.h: Comment fix.
[bpt/emacs.git] / src / s / sol2-10.h
1 /* Handle Solaris 2.10. */
2
3 #include "sol2-6.h"
4
5 #define SYSTEM_MALLOC
6
7 /* Use the Solaris dldump() function, called from unexsol.c, to dump
8 emacs, instead of the generic ELF dump code found in unexelf.c.
9 The resulting binary has a complete symbol table, and is better
10 for debugging and other observability tools (debuggers, pstack, etc).
11
12 If you encounter a problem using dldump(), please consider sending
13 a message to the OpenSolaris tools-linking mailing list:
14 http://mail.opensolaris.org/mailman/listinfo/tools-linking
15
16 It is likely that dldump() works with older Solaris too, but this has
17 not been tested, so for now this change is for Solaris 10 or newer. */
18 #undef UNEXEC
19 #define UNEXEC unexsol.o
20
21 /* This is used in list_system_processes. */
22 #define HAVE_PROCFS 1
23
24 /* This is needed for the system_process_attributes implementation. */
25 #define _STRUCTURED_PROC 1
26
27 /* arch-tag: 7c51a134-5469-4d16-aa00-d69224640eeb
28 (do not change this comment) */