Fix parallel build of examples/charm++/user-driven-interop
[charm.git] / src / conv-core / global-nop.c
blob42ffe8e44fa397e5304aff8adf1032a247d01a81
1 /*
2 Empty versions of Ctg routines, for use when
3 we don't want to swap globals (or can't figure
4 out how.
6 Orion Sky Lawlor, olawlor@acm.org, 2003/9/22
7 */
8 #include "converse.h"
10 CpvDeclare(int, CmiPICMethod);
12 void CtgInit(void) {
13 CpvInitialize(int, CmiPICMethod);
14 CpvAccess(CmiPICMethod) = CMI_PIC_NOP;
16 void CtgInstall(CtgGlobals g) {}
17 CtgGlobals CtgCreate(CthThread tid) {return 0;}
18 CtgGlobals CtgPup(pup_er p,CtgGlobals g) { return 0;}
19 void CtgFree(CtgGlobals g) {}
20 CtgGlobals CtgCurrentGlobals(void) { return 0; }