Skip to content
Snippets Groups Projects
Commit 695778c9 authored by Thomas Jahns's avatar Thomas Jahns :cartwheel:
Browse files

Remove unused enum values and change name.

parent bb338be4
No related branches found
No related tags found
No related merge requests found
......@@ -10,15 +10,11 @@
#include <mpi.h>
#include <yaxt.h>
typedef enum
{
FINALIZE,
RESOURCES,
WINCREATE,
WRITETS,
COLLBUFTX,
COLLBUFNMISS,
} command;
enum collectorCommandTags {
FINALIZE,
RESOURCES,
WRITETS,
};
#define MAXWINBUFFERSIZE ((size_t)2048 * 1024 * 1024)
......
......@@ -13,10 +13,9 @@
#include "dmemory.h"
static
char commands[][13] = { "FINALIZE\0",
"RESOURCES\0",
"WINCREATE\0",
"WRITETS\0"};
char commands[][13] = { "FINALIZE",
"RESOURCES",
"WRITETS"};
/*****************************************************************************/
void
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment