~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/myisam/my_pread.cc

Merge trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
 
16
16
#include "myisam_priv.h"
17
17
#include "drizzled/error.h"
18
 
#include "drizzled/internal/thread_var.h"
19
18
#include <cerrno>
20
19
#include <unistd.h>
21
20
 
117
116
      offset+=writenbytes;
118
117
    }
119
118
#ifndef NO_BACKGROUND
120
 
    if (my_thread_var->abort)
121
 
      MyFlags&= ~ MY_WAIT_IF_FULL;              /* End if aborted by user */
122
119
    if ((errno == ENOSPC || errno == EDQUOT) &&
123
120
        (MyFlags & MY_WAIT_IF_FULL))
124
121
    {