fut0fut.h
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:1k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /**********************************************************************
  2. File-based utilities
  3. (c) 1995 Innobase Oy
  4. Created 12/13/1995 Heikki Tuuri
  5. ***********************************************************************/
  6. #ifndef fut0fut_h
  7. #define fut0fut_h
  8. #include "univ.i"
  9. #include "fil0fil.h"
  10. #include "mtr0mtr.h"
  11. /************************************************************************
  12. Gets a pointer to a file address and latches the page. */
  13. UNIV_INLINE
  14. byte*
  15. fut_get_ptr(
  16. /*========*/
  17. /* out: pointer to a byte in a frame; the file
  18. page in the frame is bufferfixed and latched */
  19. ulint space, /* in: space id */
  20. fil_addr_t addr, /* in: file address */
  21. ulint rw_latch, /* in: RW_S_LATCH, RW_X_LATCH */
  22. mtr_t* mtr); /* in: mtr handle */
  23. #ifndef UNIV_NONINL
  24. #include "fut0fut.ic"
  25. #endif
  26. #endif