comparison src/emacs.c @ 90796:4ef881a120fe

Merge from emacs--devo--0 Patches applied: * emacs--devo--0 (patch 675-697) - Update from CVS - Merge from gnus--rel--5.10 - Release ERC 5.2. * gnus--rel--5.10 (patch 211-215) - Update from CVS - Merge from emacs--devo--0 Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-189
author Miles Bader <miles@gnu.org>
date Wed, 11 Apr 2007 00:17:47 +0000
parents 95d0cdf160ea c2cdad316359
children 5d649c564ce9
comparison
equal deleted inserted replaced
90795:b9182b6a90c9 90796:4ef881a120fe
1737 } 1737 }
1738 1738
1739 /* Set up for profiling. This is known to work on FreeBSD, 1739 /* Set up for profiling. This is known to work on FreeBSD,
1740 GNU/Linux and MinGW. It might work on some other systems too. 1740 GNU/Linux and MinGW. It might work on some other systems too.
1741 Give it a try and tell us if it works on your system. To compile 1741 Give it a try and tell us if it works on your system. To compile
1742 for profiling use something like: 1742 for profiling, add -pg to the switches your platform uses in
1743 `make CFLAGS="-pg -g -O -DPROFILING=1'. */ 1743 CFLAGS and LDFLAGS. For example:
1744 `make CFLAGS="-pg -g -O -DPROFILING=1" LDFLAGS="-pg -g"'. */
1744 #if defined (__FreeBSD__) || defined (GNU_LINUX) || defined(__MINGW32__) 1745 #if defined (__FreeBSD__) || defined (GNU_LINUX) || defined(__MINGW32__)
1745 #ifdef PROFILING 1746 #ifdef PROFILING
1746 if (initialized) 1747 if (initialized)
1747 { 1748 {
1748 extern void _mcleanup (); 1749 extern void _mcleanup ();