InnoDB Plugin  1.0
Typedefs | Functions | Variables
os0proc.h File Reference
#include "univ.i"
#include "os0proc.ic"
Include dependency graph for os0proc.h:
This graph shows which files directly or indirectly include this file:

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

Detailed Description

The interface to the operating system process control primitives

Created 9/30/1995 Heikki Tuuri

Function Documentation

UNIV_INTERN void* os_mem_alloc_large ( ulint *  n)

Allocates large pages memory.

Returns
allocated memory in/out: number of bytes
UNIV_INTERN void os_mem_free_large ( void *  ptr,
ulint  size 
)

Frees large pages memory. in: size returned by os_mem_alloc_large()

Parameters
ptrin: 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'.

Returns
process id as a number