Man Page: tau_track_memory_here
Operating Environment: debian
Section: 3
TAU_TRACK_MEMORY_HER(3) TAU Instrumentation API TAU_TRACK_MEMORY_HER(3)NAMETAU_TRACK_MEMORY_HERE - Triggers memory tracking at a given execution pointSYNOPSISC/C++: TAU_TRACK_MEMORY_HERE(void); Fortran: TAU_TRACK_MEMORY_HERE(void);DESCRIPTIONTriggers memory tracking at a given execution pointEXAMPLEC/C++ : int main(int argc, char **argv) { TAU_PROFILE("main()", " ", TAU_DEFAULT); TAU_PROFILE_SET_NODE(0); TAU_TRACK_MEMORY_HERE(); int *x = new int[5*1024*1024]; TAU_TRACK_MEMORY_HERE(); return 0; } Fortran : INTEGER, ALLOCATABLE :: STORAGEARY(:) allocate(STORAGEARY(1:999), STAT=IERR) ! if we wish to record a sample of the heap memory ! utilization at this point, invoke the following call: call TAU_TRACK_MEMORY_HERE()SEE ALSOTAU_TRACK_MEMORY(3) 08/31/2005 TAU_TRACK_MEMORY_HER(3)
| Related Man Pages |
|---|
| tau_enable_instrumentation(3) - debian |
| tau_profile_set_node(3) - debian |
| tau_profile_timer(3) - debian |
| tau_register_event(3) - debian |
| tau_set_interrupt_interval(3) - debian |
| Similar Topics in the Unix Linux Community |
|---|
| awk or sed - Convert 2 lines to 1 line |
| How can I do this in VI editor? |
| Is UNIX an open source OS ? |
| Find columns in a file based on header and print to new file |
| Weird 'find' results |