search for: mem_free

Displaying 3 results from an estimated 3 matches for "mem_free".

Did you mean: vmem_free
2011 Feb 11
2
Not able to capture detailed CPU information of the guest machine using Libvirt API.
...ntu host machine.I am using Python binding of Libvirt API to query on the hypervisor and capture the CPU , memory related information of the guest machines. I need to capture the detail information regarding CPU like : cpu_aidle, cpu_idle, cpu_speed, cpu_wio and memory like :mem_cached,mem_buffers,mem_free etc. of the guest machines. How could I get these information? Please help me. Thanks in Advance!! Arpita -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://listman.redhat.com/archives/libvirt-users/attachments/20110211/36b12dc7/attachment.htm>
2014 Oct 22
2
Using a custom memory allocation function in R
...> #include <numa.h> SEXP R_allocate_using_myalloc(SEXP R_n, SEXP R_res){ PROTECT(R_n = coerceVector(R_n, INTSXP)); PROTECT(R_res = coerceVector(R_res, REALSXP)); int *restrict n = INTEGER(R_n); R_allocator_t myAllocator; myAllocator.mem_alloc = numa_alloc_onnode; myAllocator.mem_free = numa_free; myAllocator.res = NULL; myAllocator.data = ???; R_res = allocVector3(REALSXP, n, myAllocator); UNPROTECT(2); return R_res; } Unfortunately I cannot get beyond a variable has incomplete type 'R_allocator_t' compilation error (I had to remove the .data line since I h...
2016 Feb 19
0
Wine release 1.9.4
...ompareStringA. opengl32: Ensure extension tables generated by make_opengl contain earliest GL_VERSION for each function. kernel32/tests: Add test to show that CompareStringW aborts on first non-matching character. kernel32/tests: Add a test to show that VirtualFree fails with type MEM_FREE. kernel32/tests: Ensure VirtualAlloc tests do not depend on previous memory allocations. ntdll/tests: Fix flags passed to VirtualFree in exception tests. kernel32/tests: Fix flags passed to VirtualFree in multiple tests. ntoskrnl.exe: Fix calling convention of InterlockedPop...