~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/innobase/include/dict0boot.h

  • Committer: Monty Taylor
  • Date: 2008-09-15 17:24:04 UTC
  • Revision ID: monty@inaugust.com-20080915172404-ygh6hiyu0q7qpa9x
Removed strndup calls.

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
 
23
23
/**************************************************************************
24
24
Gets a pointer to the dictionary header and x-latches its page. */
25
 
UNIV_INTERN
 
25
 
26
26
dict_hdr_t*
27
27
dict_hdr_get(
28
28
/*=========*/
31
31
        mtr_t*  mtr);   /* in: mtr */
32
32
/**************************************************************************
33
33
Returns a new row, table, index, or tree id. */
34
 
UNIV_INTERN
 
34
 
35
35
dulint
36
36
dict_hdr_get_new_id(
37
37
/*================*/
63
63
/*********************************************************************
64
64
Initializes the data dictionary memory structures when the database is
65
65
started. This function is also called when the data dictionary is created. */
66
 
UNIV_INTERN
 
66
 
67
67
void
68
68
dict_boot(void);
69
69
/*===========*/
70
70
/*********************************************************************
71
71
Creates and initializes the data dictionary at the database creation. */
72
 
UNIV_INTERN
 
72
 
73
73
void
74
74
dict_create(void);
75
75
/*=============*/