~ubuntu-branches/ubuntu/vivid/drizzle/vivid-proposed

« back to all changes in this revision

Viewing changes to plugin/innobase/include/buf0flu.h

  • Committer: Package Import Robot
  • Author(s): Tobias Frost
  • Date: 2013-08-22 20:18:31 UTC
  • mto: (20.1.1 sid)
  • mto: This revision was merged to the branch mainline in revision 21.
  • Revision ID: package-import@ubuntu.com-20130822201831-gn3ozsh7o7wmc5tk
Tags: upstream-7.2.3
ImportĀ upstreamĀ versionĀ 7.2.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
139
139
void
140
140
buf_flush_wait_batch_end(
141
141
/*=====================*/
142
 
        buf_pool_t*     buf_pool,       /*!< buffer pool instance */
 
142
        buf_pool_t*     buf_pool,       /*!< in: buffer pool instance */
 
143
        enum buf_flush  type);          /*!< in: BUF_FLUSH_LRU
 
144
                                        or BUF_FLUSH_LIST */
 
145
/******************************************************************//**
 
146
Waits until a flush batch of the given type ends. This is called by
 
147
a thread that only wants to wait for a flush to end but doesn't do
 
148
any flushing itself. */
 
149
UNIV_INTERN
 
150
void
 
151
buf_flush_wait_batch_end_wait_only(
 
152
/*===============================*/
 
153
        buf_pool_t*     buf_pool,       /*!< in: buffer pool instance */
143
154
        enum buf_flush  type);          /*!< in: BUF_FLUSH_LRU
144
155
                                        or BUF_FLUSH_LIST */
145
156
/********************************************************************//**