Removing the synchronized memory region from tasks.

This commit is contained in:
Eric Holk
2011-07-06 16:42:02 -07:00
parent a0f45f4456
commit dcd2563a3a
7 changed files with 21 additions and 98 deletions

View File

@@ -81,7 +81,6 @@ rust_task : public maybe_proxy<rust_task>,
int pinned_on;
memory_region local_region;
memory_region synchronized_region;
class wakeup_callback {
public:
@@ -153,12 +152,7 @@ rust_task : public maybe_proxy<rust_task>,
bool can_schedule(int worker);
void *malloc(size_t size, memory_region::memory_region_type type);
void *calloc(size_t size);
void *calloc(size_t size, memory_region::memory_region_type type);
void *realloc(void *mem, size_t size,
memory_region::memory_region_type type);
void free(void *mem, memory_region::memory_region_type type);
void pin();
void pin(int id);