1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-03-23 07:12:12 -07:00

Removing unnecessary "event" override.

Adding some instructions to the leader comment of eventcnv.c.

Copied from Perforce
 Change: 179151
 ServerID: perforce.ravenbrook.com
This commit is contained in:
Richard Brooksby 2012-08-31 21:54:43 +01:00
parent eea455cbad
commit 1772fa46cc
2 changed files with 17 additions and 4 deletions

View file

@ -1,12 +1,27 @@
/* eventcnv.c: Simple event log converter
* Copyright (c) 2001 Ravenbrook Limited. See end of file for license.
*
* This is a command-line tool that converts a binary format telemetry output
* stream from the MPS into several textual formats.
*
* The default MPS library will write a telemetry stream to a file called
* "mpsio.log" when the environment variable MPS_TELEMETRY_CONTROL is set
* to an integer whose bits select event kinds. For example:
*
* MPS_TELEMETRY_CONTROL=7 amcss
*
* will run the amcss test program and emit a file with event kinds 0, 1, 2.
* The file can then be converted into text format with a command like:
*
* eventcnv -v | sort
*
* Note that the eventcnv program can only read streams that come from an
* MPS compiled on the same platform.
*
* $Id$
*/
#include "config.h"
/* override variety setting for EVENT */
#define EVENT
#include "eventdef.h"
#include "eventcom.h"

View file

@ -8,8 +8,6 @@
#define eventpro_h
#include "config.h"
/* override variety setting for EVENT */
#define EVENT
#include "eventcom.h"
#include "mpmtypes.h"