Skip to content

Commit

Permalink
remove priority on RemoteFillArgs - doesn't fit in 64-bit mode
Browse files Browse the repository at this point in the history
  • Loading branch information
streichler committed Aug 31, 2015
1 parent 7ae8392 commit 3aee202
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions runtime/lowlevel_dma.cc
Original file line number Diff line number Diff line change
Expand Up @@ -4223,7 +4223,7 @@ namespace Realm {
args.size = it->size;
args.before_fill = wait_on;
args.after_fill = ev;
args.priority = 0;
//args.priority = 0;

size_t msglen = r->compute_size();
void *msgdata = malloc(msglen);
Expand Down Expand Up @@ -4316,7 +4316,7 @@ namespace LegionRuntime {
args.size,
args.before_fill,
args.after_fill,
args.priority);
0 /* no room for args.priority */);
r->check_readiness(false, dma_queue);
}

Expand Down
2 changes: 1 addition & 1 deletion runtime/lowlevel_dma.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ namespace LegionRuntime {
RegionInstance inst;
unsigned offset, size;
Event before_fill, after_fill;
int priority;
//int priority;
};

extern void handle_remote_copy(RemoteCopyArgs args, const void *data, size_t msglen);
Expand Down

0 comments on commit 3aee202

Please sign in to comment.