~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/heap/hp_open.cc

Remove PLUGIN and MODULES.

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
#include "heap_priv.h"
19
19
 
20
20
#include <string.h>
 
21
#include <cstdlib>
21
22
 
22
23
using namespace std;
23
24
 
83
84
  pthread_mutex_lock(&THR_LOCK_heap);
84
85
  if (!(share= hp_find_named_heap(name)))
85
86
  {
86
 
    my_errno= ENOENT;
 
87
    errno= ENOENT;
87
88
    pthread_mutex_unlock(&THR_LOCK_heap);
88
89
    return(0);
89
90
  }