~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/innobase/trx/trx0sys.c

  • Committer: Brian Aker
  • Date: 2010-12-08 22:35:56 UTC
  • mfrom: (1819.9.158 update-innobase)
  • Revision ID: brian@tangent.org-20101208223556-37mi4omqg7lkjzf3
Merge in Stewart's changes, 1.3 changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
249
249
{
250
250
        buf_block_t*    block;
251
251
        buf_block_t*    block2;
 
252
#ifdef UNIV_SYNC_DEBUG
252
253
        buf_block_t*    new_block;
 
254
#endif /* UNIV_SYNC_DEBUG */
253
255
        byte*   doublewrite;
254
256
        byte*   fseg_header;
255
257
        ulint   page_no;
352
354
                        the page position in the tablespace, then the page
353
355
                        has not been written to in doublewrite. */
354
356
 
355
 
                        new_block = buf_page_get(TRX_SYS_SPACE, 0, page_no,
356
 
                                                 RW_X_LATCH, &mtr);
 
357
#ifdef UNIV_SYNC_DEBUG
 
358
                        new_block =
 
359
#endif /* UNIV_SYNC_DEBUG */
 
360
                        buf_page_get(TRX_SYS_SPACE, 0, page_no,
 
361
                                     RW_X_LATCH, &mtr);
357
362
                        buf_block_dbg_add_level(new_block,
358
363
                                                SYNC_NO_ORDER_CHECK);
359
364