InnoDB Plugin
1.0
|
Go to the source code of this file.
Typedefs | |
typedef void * | os_process_t |
typedef unsigned long int | os_process_id_t |
Functions | |
UNIV_INTERN ulint | os_proc_get_number (void) |
UNIV_INTERN void * | os_mem_alloc_large (ulint *n) |
UNIV_INTERN void | os_mem_free_large (void *ptr, ulint size) |
Variables | |
ibool | os_use_large_pages |
ulint | os_large_page_size |
The interface to the operating system process control primitives
Created 9/30/1995 Heikki Tuuri
UNIV_INTERN void* os_mem_alloc_large | ( | ulint * | n | ) |
Allocates large pages memory.
UNIV_INTERN void os_mem_free_large | ( | void * | ptr, |
ulint | size | ||
) |
Frees large pages memory. in: size returned by os_mem_alloc_large()
ptr | in: pointer returned by os_mem_alloc_large() |
UNIV_INTERN ulint os_proc_get_number | ( | void | ) |
Converts the current process id to a number. It is not guaranteed that the number is unique. In Linux returns the 'process number' of the current thread. That number is the same as one sees in 'top', for example. In Linux the thread id is not the same as one sees in 'top'.