os0shm.h
Upload User: tsgydb
Upload Date: 2007-04-14
Package Size: 10674k
Code Size: 2k
Category:

MySQL

Development Platform:

Visual C++

  1. /******************************************************
  2. The interface to the operating system
  3. shared memory primitives
  4. (c) 1995 Innobase Oy
  5. Created 9/23/1995 Heikki Tuuri
  6. *******************************************************/
  7. #ifndef os0shm_h
  8. #define os0shm_h
  9. #include "univ.i"
  10. typedef void* os_shm_t;
  11. /********************************************************************
  12. Creates an area of shared memory. It can be named so that
  13. different processes may access it in the same computer.
  14. If an area with the same name already exists, returns
  15. a handle to that area (where the size of the area is
  16. not changed even if this call requests a different size).
  17. To use the area, it first has to be mapped to the process
  18. address space by os_shm_map. */
  19. os_shm_t
  20. os_shm_create(
  21. /*==========*/
  22. /* out, own: handle to the shared
  23. memory area, NULL if error */
  24. ulint size, /* in: area size < 4 GB */
  25. char* name); /* in: name of the area as a null-terminated
  26. string */
  27. /***************************************************************************
  28. Frees a shared memory area. The area can be freed only after it
  29. has been unmapped in all the processes where it was mapped. */
  30. ibool
  31. os_shm_free(
  32. /*========*/
  33. /* out: TRUE if success */
  34. os_shm_t shm); /* in, own: handle to a shared memory area */
  35. /***************************************************************************
  36. Maps a shared memory area in the address space of a process. */
  37. void*
  38. os_shm_map(
  39. /*=======*/
  40. /* out: address of the area, NULL if error */
  41. os_shm_t shm); /* in: handle to a shared memory area */
  42. /***************************************************************************
  43. Unmaps a shared memory area from the address space of a process. */
  44. ibool
  45. os_shm_unmap(
  46. /*=========*/
  47. /* out: TRUE if succeed */
  48. void* addr); /* in: address of the area */
  49. #ifndef UNIV_NONINL
  50. #include "os0shm.ic"
  51. #endif
  52. #endif