repo.or.cz
/
charm.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fix memory leaks in trace projections and summary
[charm.git]
/
src
/
conv-ldb
/
cldb.workstealing.h
blob
2d69152f9782dbab1e8abd535365bbcfe7150c01
1
#include
"cldb.h"
2
/* for sqrt() */
3
#include <math.h>
4
5
6
/* work request message when idle */
7
typedef
struct
requestmsg_s
{
8
char
header
[
CmiMsgHeaderSizeBytes
];
9
int
from_pe
;
10
/* int to_rank; */
11
int
to_pe
;
12
}
requestmsg
;
13